ぼざクリタグ広場 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.
 
 
 
 
 
 

13 lines
435 B

  1. class CreateTheatreComments < ActiveRecord::Migration[8.0]
  2. def change
  3. create_table :theatre_comments, primary_key: [:theatre_id, :no] do |t|
  4. t.references :theatre, null: false, foreign_key: { to_table: :theatres }
  5. t.integer :no, null: false
  6. t.references :user, foreign_key: { to_table: :users }
  7. t.text :content, null: false
  8. t.timestamps
  9. t.datetime :discarded_at, index: true
  10. end
  11. end
  12. end