Commit f0606451194db37f897f2f487f8ab855271674a5

Authored by Dmitriy Zaporozhets
1 parent 7384541b

Add notification level to group membership

db/migrate/20130621195223_add_notification_level_to_user_group.rb 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +class AddNotificationLevelToUserGroup < ActiveRecord::Migration
  2 + def change
  3 + add_column :users_groups, :notification_level, :integer, null: false, default: 3
  4 + end
  5 +end
... ...