docbrown/db/migrate/20190827163358_add_mod_notifications_to_users.rb
Ben Halpern 208bbb3757
Improve mod roundrobin notification and internal tooling (#3855)
* Improve mod roundrobin notification and internal tooling

* Fix tests
2019-08-27 21:54:09 -04:00

5 lines
165 B
Ruby

class AddModNotificationsToUsers < ActiveRecord::Migration[5.2]
def change
add_column :users, :mod_roundrobin_notifications, :boolean, default: true
end
end