7 lines
217 B
Ruby
7 lines
217 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddLayoutToAttestationTemplates < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :attestation_templates, :official_layout, :boolean, default: true, null: false
|
|
end
|
|
end
|