From f0606451194db37f897f2f487f8ab855271674a5 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Fri, 21 Jun 2013 23:17:20 +0300 Subject: [PATCH] Add notification level to group membership --- .../20130621195223_add_notification_level_to_user_group.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20130621195223_add_notification_level_to_user_group.rb 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 -- GitLab