discourse/db/migrate/20131001060630_add_email_always_to_users.rb
Sam f0a122a66c move job files so they live underneath app/ and not in lib/
introduce new setting email_always, that will force emails to send to users regardless of presence on site
2013-10-01 17:04:02 +10:00

6 lines
150 B
Ruby

class AddEmailAlwaysToUsers < ActiveRecord::Migration
def change
add_column :users, :email_always, :bool, default: false, null: false
end
end