2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-12-19 12:51:59 +01:00
|
|
|
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
|