about summary refs log tree commit diff
path: root/db/migrate/20190506024558_add_unlisted_to_accounts.rb
blob: 027be27a5bb0e3bea08fbe8618201661c96bb9b7 (plain) (blame)
1
2
3
4
5
class AddUnlistedToAccounts < ActiveRecord::Migration[5.2]
  def change
    safety_assured { add_column :accounts, :unlisted, :boolean, null: false, default: false }
  end
end