7 lines
168 B
Ruby
7 lines
168 B
Ruby
class AddCgvToPCustomers < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :p_customers, :cgv, :boolean
|
|
add_column :p_customers, :rgpd, :boolean
|
|
end
|
|
end
|