demarches-normaliennes/db/migrate/20231219093437_add_labels_to_attestation_templates.rb
2024-08-22 09:26:48 +02:00

8 lines
276 B
Ruby

# frozen_string_literal: true
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