8 lines
199 B
Ruby
8 lines
199 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddStateToAttestationTemplates < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
add_column :attestation_templates, :state, :string, default: 'published'
|
||
|
end
|
||
|
end
|