discourse/db/migrate/20160127105314_change_defau...

7 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