2017-12-11 11:34:51 -05:00
|
|
|
# rubocop:disable Migration/RemoveColumn
|
2016-06-09 15:33:31 -04:00
|
|
|
class RemoveNotificationLevelFromUsers < ActiveRecord::Migration
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
def change
|
|
|
|
remove_column :users, :notification_level, :integer
|
|
|
|
end
|
|
|
|
end
|