demarches-normaliennes/db/migrate/20240131094915_add_template_to_exports.rb
2024-05-23 10:00:34 +02:00

6 lines
202 B
Ruby

class AddTemplateToExports < ActiveRecord::Migration[7.0]
disable_ddl_transaction!
def change
add_reference :exports, :export_template, null: true, index: { algorithm: :concurrently }
end
end