AttestationTemplate: store logo and signature with uuid

This commit is contained in:
Simon Lehericey 2017-10-19 15:07:18 +02:00
parent 475675f75d
commit 3dce5b9b5e
7 changed files with 68 additions and 6 deletions

View file

@ -0,0 +1,5 @@
class AddLogoSecureTokenColumnToAttestationTemplate < ActiveRecord::Migration[5.0]
def change
add_column :attestation_templates, :logo_secure_token, :string
end
end

View file

@ -0,0 +1,5 @@
class AddSignatureSecureTokenColumnToAttestationTemplate < ActiveRecord::Migration[5.0]
def change
add_column :attestation_templates, :signature_secure_token, :string
end
end