pollen_app/db/migrate/20190923104853_add_enabled_to_p_customers.rb
Nicolas Bally 120e9803eb initial
2020-04-28 14:51:42 +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