about summary refs log tree commit diff
path: root/db/migrate/20191014164340_add_force_private_to_accounts.rb
blob: 4201b64817c5d92e19d66ab540503ff10efc88f0 (plain) (blame)
1
2
3
4
5
6
7
class AddForcePrivateToAccounts < ActiveRecord::Migration[5.2]
  def change
    safety_assured {
      add_column :accounts, :force_private, :boolean, null: false, default: false
    }
  end
end