debian-mirror-gitlab/db/post_migrate/20170828170516_remove_user_external_mail_columns.rb
2019-01-03 12:48:30 +05:30

13 lines
336 B
Ruby

# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class RemoveUserExternalMailColumns < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
remove_column :users, :external_email, :boolean
end
end