about summary refs log tree commit diff
path: root/db/migrate/20191118005833_add_filter_undescribed_to_accounts.rb
blob: 10a037bfebcbcdc0c1883ba25dbe0617320136af (plain) (blame)
1
2
3
4
5
class AddFilterUndescribedToAccounts < ActiveRecord::Migration[5.2]
  def change
    add_column :accounts, :filter_undescribed, :boolean, default: false, null: false
  end
end