about summary refs log tree commit diff
path: root/db/migrate/20201123152231_add_no_verify_auth_to_accounts.rb
blob: 38f5bc0464841060c8087b05da5a45d66180f64b (plain) (blame)
1
2
3
4
5
6
7
class AddNoVerifyAuthToAccounts < ActiveRecord::Migration[5.2]
  def change
    safety_assured do
      add_column :accounts, :no_verify_auth, :boolean, null: false, default: false
    end
  end
end