1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/db/migrate/20160127105314_change_default_notification_level_on_groups.rb

7 lines
241 B
Ruby

class ChangeDefaultNotificationLevelOnGroups < ActiveRecord::Migration
def change
execute "UPDATE group_users SET notification_level = 2"
change_column :group_users, :notification_level, :integer, null: false, default: 2
end
end