2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-10 05:01:43 +08:00
discourse/db/migrate/20160127105314_change_default_notification_level_on_groups.rb

6 lines
246 B
Ruby

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