diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-06-21 23:17:20 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-06-21 23:17:20 +0300 |
commit | f0606451194db37f897f2f487f8ab855271674a5 (patch) | |
tree | 2a04fdbd81809450bd598e75d2b13a96390d0f51 /db/migrate | |
parent | 7384541b345169a829c4c9f2b63bf71fd223d9b9 (diff) | |
download | gitlab-ce-f0606451194db37f897f2f487f8ab855271674a5.tar.gz |
Add notification level to group membership
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20130621195223_add_notification_level_to_user_group.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20130621195223_add_notification_level_to_user_group.rb b/db/migrate/20130621195223_add_notification_level_to_user_group.rb new file mode 100644 index 00000000000..8c2e3dfcaca --- /dev/null +++ b/db/migrate/20130621195223_add_notification_level_to_user_group.rb @@ -0,0 +1,5 @@ +class AddNotificationLevelToUserGroup < ActiveRecord::Migration + def change + add_column :users_groups, :notification_level, :integer, null: false, default: 3 + end +end |