about summary refs log tree commit diff stats
path: root/db/migrate/20170924160524_add_storage_info_to_pokemon.rb
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