2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00
discourse/db/migrate/20151214165852_add_notification_level_to_group_users.rb

6 lines
236 B
Ruby

class AddNotificationLevelToGroupUsers < ActiveRecord::Migration[4.2]
def change
# defaults to TopicUser.notification_levels[:watching]
add_column :group_users, :notification_level, :integer, default: 3, null: false
end
end