debian-mirror-gitlab/db/migrate/20160610301627_remove_notification_level_from_users.rb
2019-02-15 15:39:39 +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