Add notification level to group membership

This commit is contained in:
Dmitriy Zaporozhets 2013-06-21 23:17:20 +03:00
parent 7384541b34
commit f060645119
1 changed files with 5 additions and 0 deletions

View File

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