debian-mirror-gitlab/db/post_migrate/20170828170513_remove_user_email_provider_column.rb

13 lines
335 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
2019-01-03 12:48:30 +05:30
class RemoveUserEmailProviderColumn < ActiveRecord::Migration
2018-03-17 18:26:18 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
remove_column :users, :email_provider, :string
end
end