demarches-normaliennes/db/migrate/20240514164228_add_state_to_attestation_templates.rb
2024-06-20 11:08:15 +02:00

7 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