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: 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