demarches-normaliennes/db/migrate/20231219093437_add_labels_to_attestation_templates.rb

6 lines
245 B
Ruby

class AddLabelsToAttestationTemplates < ActiveRecord::Migration[7.0]
def change
add_column :attestation_templates, :label_logo, :string, default: nil
add_column :attestation_templates, :label_direction, :string, default: nil
end
end