ぼざクリタグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
373 B

  1. class CreateTheatreProgrammes < ActiveRecord::Migration[8.0]
  2. def change
  3. create_table :theatre_programmes, primary_key: [:theatre_id, :position] do |t|
  4. t.references :theatre, null: false, foreign_key: true
  5. t.integer :position, null: false
  6. t.references :post, null: false, foreign_key: true
  7. t.datetime :created_at, null: false
  8. end
  9. end
  10. end