mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 13:39:36 -06:00
7 lines
231 B
Ruby
7 lines
231 B
Ruby
class AddNotificationLevelToGroupUsers < ActiveRecord::Migration
|
|
def change
|
|
# defaults to TopicUser.notification_levels[:watching]
|
|
add_column :group_users, :notification_level, :integer, default: 3, null: false
|
|
end
|
|
end
|