about summary refs log tree commit diff stats
path: root/db
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-10-15 14:35:11 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-10-15 14:35:11 -0400
commit5e58948fbdd918f45b25e5a5330ba85481a6f75e (patch)
treeb66b5e8330f141cd2522bf98bd5fbc925d3ce4aa /db
parent230a5014f895dedc6d16192e853f90cb18eb8703 (diff)
downloadthoughts-5e58948fbdd918f45b25e5a5330ba85481a6f75e.tar.gz
thoughts-5e58948fbdd918f45b25e5a5330ba85481a6f75e.tar.bz2
thoughts-5e58948fbdd918f45b25e5a5330ba85481a6f75e.zip
Fixed two migration similar to previous
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