blob: a93159be1aa314f005a9b66d539c606b0c9816fe (
plain) (
blame)
1
2
3
4
5
6
|
class AddStorageInfoToPokemon < ActiveRecord::Migration[5.1]
def change
add_column :pokemon, :box, :integer, null: true
add_column :pokemon, :slot, :integer, null: true
end
end
|