payrepmc_app/db/migrate/20200513175921_add_rgpd_to_contacts.rb
Nicolas Bally c739748330 suite
2020-05-13 20:53:58 +02:00

7 lines
194 B
Ruby

class AddRgpdToContacts < ActiveRecord::Migration
def change
add_column :contacts, :rgpd, :boolean, :default => false
add_column :contacts, :cgv, :boolean, :default => false
end
end