summaryrefslogtreecommitdiff
path: root/db/migrate/20231103011455_create_pokedex_entries.rb
blob: aa75459b0e11c2e5147d6406b8f8dff3a9db0a78 (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.boolean :shiny, null: false, default: false

      t.timestamps
    end
  end
end