lockaz_app/db/migrate/20190923104853_add_enabled_to_p_customers.rb
Nicolas Bally f20fe482c6 initial
2020-04-06 10:38:07 +02: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