2018-03-17 18:26:18 +05:30
|
|
|
# rubocop:disable Migration/RemoveColumn
|
2019-02-15 15:39:39 +05:30
|
|
|
class RemoveNotificationLevelFromUsers < ActiveRecord::Migration[4.2]
|
2016-06-16 23:09:34 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
def change
|
|
|
|
remove_column :users, :notification_level, :integer
|
|
|
|
end
|
|
|
|
end
|