class CreateTitleAwards < ActiveRecord::Migration[6.1] def change create_table :title_awards do |t| t.references :title, null: false, foreign_key: true t.references :character, null: false, foreign_key: true t.timestamps end end end