demarches-normaliennes/db/migrate/20240130154452_create_export_templates.rb
2024-05-23 10:00:31 +02:00

12 lines
327 B
Ruby

class CreateExportTemplates < ActiveRecord::Migration[7.0]
def change
create_table :export_templates do |t|
t.string :name, null: false
t.string :kind, null: false
t.jsonb :content, default: {}
t.belongs_to :groupe_instructeur, null: false, foreign_key: true
t.timestamps
end
end
end