Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160610301627_remove_notification_level_from_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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