demarches-normaliennes/db/migrate/20240130154452_create_export_templates.rb

13 lines
327 B
Ruby
Raw Normal View History

2024-03-02 21:47:48 +01:00
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