add notification level to UsersProject

This commit is contained in:
Dmitriy Zaporozhets 2013-04-04 22:11:15 +03:00
parent 5cb3024e13
commit 3c3baf8f6d
1 changed files with 5 additions and 0 deletions

View File

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