debian-mirror-gitlab/db/post_migrate/20170828170516_remove_user_external_mail_columns.rb

13 lines
336 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.
class RemoveUserExternalMailColumns < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
remove_column :users, :external_email, :boolean
end
end