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