summaryrefslogtreecommitdiff
path: root/db/migrate/20231103011455_create_pokedex_entries.rb
blob: 04232b1cdd0aaecc193816f9272e8962b709babe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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