notification level for user

This commit is contained in:
Dmitriy Zaporozhets 2013-03-26 10:16:49 +02:00
parent cf6d4dc10c
commit 4b3950456d
3 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddNotificationLevelToUser < ActiveRecord::Migration
def change
add_column :users, :notification_level, :integer, null: false, default: 1
end
end