This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/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