class CreatePtuPokemons < ActiveRecord::Migration[6.1] def change create_table :ptu_pokemons do |t| t.string :name t.integer :base_hp t.integer :base_atk t.integer :base_def t.integer :base_spatk t.integer :base_spdef t.integer :base_speed t.decimal :male_chance t.text :notes t.timestamps end end end