gitlab-org--gitlab-foss/db/migrate/20160610301627_remove_notif...

9 lines
236 B
Ruby

# rubocop:disable Migration/RemoveColumn
class RemoveNotificationLevelFromUsers < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
def change
remove_column :users, :notification_level, :integer
end
end