Files
btrc-hub/backend/db/migrate/20260514221900_create_theatre_programmes.rb
2026-05-17 21:09:43 +09:00

11 lines
373 B
Ruby

class CreateTheatreProgrammes < ActiveRecord::Migration[8.0]
def change
create_table :theatre_programmes, primary_key: [:theatre_id, :position] do |t|
t.references :theatre, null: false, foreign_key: true
t.integer :position, null: false
t.references :post, null: false, foreign_key: true
t.datetime :created_at, null: false
end
end
end