demarches-normaliennes/db/migrate/20220425140107_add_lien_dpo_to_procedure.rb
Martin be090a1bec feat(administrateur/procedure#create): allow admin to add a lien to the DPO, allow user to consult link to dpo. enhance spec on _procedure_footer.html
Update spec/views/users/_procedure_footer.html.haml_spec.rb

Co-authored-by: Pierre de La Morinerie <kemenaran@gmail.com>
2022-04-27 15:09:02 +02:00

5 lines
129 B
Ruby

class AddLienDpoToProcedure < ActiveRecord::Migration[6.1]
def change
add_column :procedures, :lien_dpo, :string
end
end