Commit 3c3baf8f6d7799039cf16db044c9873f79137a49

Authored by Dmitriy Zaporozhets
1 parent 5cb3024e

add notification level to UsersProject

db/migrate/20130404164628_add_notification_level_to_user_project.rb 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +class AddNotificationLevelToUserProject < ActiveRecord::Migration
  2 + def change
  3 + add_column :users_projects, :notification_level, :integer, null: false, default: 3
  4 + end
  5 +end
... ...