2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00
discourse/db/migrate/20160225050318_allow_defaults_on_users_table.rb

10 lines
355 B
Ruby

class AllowDefaultsOnUsersTable < ActiveRecord::Migration[4.2]
def up
# we need to temporarily change table a bit to ensure we can insert new records
change_column :users, :email_digests, :boolean, null: false, default: true
change_column :users, :external_links_in_new_tab, :boolean, null: false, default: false
end
def down
end
end