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

20130325173941_add_notification_level_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1dc58d4bcc89e22cafe736ff6dc46a52a4e24026 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddNotificationLevelToUser < ActiveRecord::Migration
  def change
    add_column :users, :notification_level, :integer, null: false, default: 1
  end
end