summaryrefslogtreecommitdiff
path: root/db/migrate/20231102230947_create_pokemons.rb
blob: 764aceb24191119006fb78c4e6f0024992f6971a (plain)
1
2
3
4
5
6
7
8
9
10
class CreatePokemons < ActiveRecord::Migration[7.1]
  def change
    create_table :pokemons do |t|
      t.integer :pokedex_num, null: false
      t.string :name, null: false

      t.timestamps
    end
  end
end