about summary refs log tree commit diff stats
path: root/db
diff options
context:
space:
mode:
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20171015171555_rename_pokemon_met_location.pokeviewer.rb4
-rw-r--r--db/migrate/20171015171559_add_type_and_ability_to_species.pokeviewer.rb4
2 files changed, 5 insertions, 3 deletions
diff --git a/db/migrate/20171015171555_rename_pokemon_met_location.pokeviewer.rb b/db/migrate/20171015171555_rename_pokemon_met_location.pokeviewer.rb index afb5987..fddeac0 100644 --- a/db/migrate/20171015171555_rename_pokemon_met_location.pokeviewer.rb +++ b/db/migrate/20171015171555_rename_pokemon_met_location.pokeviewer.rb
@@ -1,7 +1,9 @@
1# This migration comes from pokeviewer (originally 20171003154157) 1# This migration comes from pokeviewer (originally 20171003154157)
2class RenamePokemonMetLocation < ActiveRecord::Migration[5.1] 2class RenamePokemonMetLocation < ActiveRecord::Migration[5.1]
3 def up 3 def up
4 add_column :pokeviewer_pokemon, :location_id, :integer, null: true 4 change_table :pokeviewer_pokemon do |t|
5 t.references :location, null: true
6 end
5 7
6 add_foreign_key :pokeviewer_pokemon, :pokeviewer_locations, 8 add_foreign_key :pokeviewer_pokemon, :pokeviewer_locations,
7 column: :location_id 9 column: :location_id
diff --git a/db/migrate/20171015171559_add_type_and_ability_to_species.pokeviewer.rb b/db/migrate/20171015171559_add_type_and_ability_to_species.pokeviewer.rb index a7da236..4a990f4 100644 --- a/db/migrate/20171015171559_add_type_and_ability_to_species.pokeviewer.rb +++ b/db/migrate/20171015171559_add_type_and_ability_to_species.pokeviewer.rb
@@ -4,8 +4,8 @@ class AddTypeAndAbilityToSpecies < ActiveRecord::Migration[5.1]
4 change_table :pokeviewer_species do |t| 4 change_table :pokeviewer_species do |t|
5 t.string :type_1, null: false, default: "" 5 t.string :type_1, null: false, default: ""
6 t.string :type_2 6 t.string :type_2
7 t.integer :ability_1_id, null: false, default: 0 7 t.references :ability_1, null: false, default: 0
8 t.integer :ability_2_id 8 t.references :ability_2
9 end 9 end
10 10
11 change_column_default :pokeviewer_species, :type_1, nil 11 change_column_default :pokeviewer_species, :type_1, nil