about summary refs log tree commit diff stats
path: root/db/migrate/20170924160524_add_storage_info_to_pokemon.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170924160524_add_storage_info_to_pokemon.rb')
-rw-r--r--db/migrate/20170924160524_add_storage_info_to_pokemon.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/migrate/20170924160524_add_storage_info_to_pokemon.rb b/db/migrate/20170924160524_add_storage_info_to_pokemon.rb index b519b1b..a93159b 100644 --- a/db/migrate/20170924160524_add_storage_info_to_pokemon.rb +++ b/db/migrate/20170924160524_add_storage_info_to_pokemon.rb
@@ -1,6 +1,6 @@
1class AddStorageInfoToPokemon < ActiveRecord::Migration[5.1] 1class AddStorageInfoToPokemon < ActiveRecord::Migration[5.1]
2 def change 2 def change
3 add_column :pokeviewer_pokemon, :box, :integer, null: true 3 add_column :pokemon, :box, :integer, null: true
4 add_column :pokeviewer_pokemon, :slot, :integer, null: true 4 add_column :pokemon, :slot, :integer, null: true
5 end 5 end
6end 6end