summaryrefslogtreecommitdiff
path: root/db/migrate/20160610301627_remove_notification_level_from_users.rb
blob: 93f70c476d2d2e2e34eaa4ea12c23b6bb7d56156 (plain)
1
2
3
4
5
6
7
8
# rubocop:disable Migration/RemoveColumn
class RemoveNotificationLevelFromUsers < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  def change
    remove_column :users, :notification_level, :integer
  end
end