1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-05 18:59:22 +00:00
discourse/db/migrate/20131001060630_add_email_always_to_users.rb

6 lines
155 B
Ruby
Raw Normal View History

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