about summary refs log tree commit diff
path: root/db/migrate/20190325072307_add_hidden_to_accounts.rb
blob: 4a62d25234352d3ee4e00c984a6bc72f42a5b601 (plain) (blame)
1
2
3
4
5
class AddHiddenToAccounts < ActiveRecord::Migration[5.2]
  def change
    add_column :accounts, :hidden, :boolean
  end
end