about summary refs log tree commit diff
path: root/db/migrate/20200728171900_add_private_to_accounts.rb
blob: 482d09576afb552031c7cff1f47060cbca841f8f (plain) (blame)
1
2
3
4
5
6
7
class AddPrivateToAccounts < ActiveRecord::Migration[5.2]
  def change
    safety_assured do
      add_column :accounts, :private, :boolean, default: false, null: false
    end
  end
end