class CreatePokedexEntries < ActiveRecord::Migration[7.1] def change create_table :pokedex_entries do |t| t.references :user, null: false, foreign_key: true t.references :run, null: false, foreign_key: true t.references :pokemon, null: false, foreign_key: true t.timestamp :recorded_at, null: false t.timestamp :recorded_shiny_at t.timestamps end end end