thatcher_app/db/migrate/20190923104853_add_enabled_to_p_customers.rb
2019-11-11 16:11:03 +01:00

7 lines
202 B
Ruby

class AddEnabledToPCustomers < ActiveRecord::Migration[6.0]
def change
add_column :p_customers, :enabled, :boolean, :default => true
add_column :p_customers, :disabled_raison, :text
end
end