sadem_app/db/migrate/20190923104853_add_enabled_to_p_customers.rb
Nicolas Bally 000500e534 init
2020-02-25 02:33:11 +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