debian-mirror-gitlab/db/migrate/20160610301627_remove_notification_level_from_users.rb
2018-12-23 12:14:25 +05:30

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