summaryrefslogtreecommitdiff
path: root/db/migrate/20160610301627_remove_notification_level_from_users.rb
blob: 8afb14df2cf6b88232296d9ddcb23698f3d5b45a (plain)
1
2
3
4
5
6
7
class RemoveNotificationLevelFromUsers < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

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