From a65972d34188d14dca10193950732d506d931e8c Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Mon, 25 Sep 2017 00:05:38 -0400 Subject: Added met location data MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Note that the met location for Pokémon from Orre is completely incorrect. --- db/migrate/20170925013807_create_pokeviewer_locations.rb | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 db/migrate/20170925013807_create_pokeviewer_locations.rb (limited to 'db/migrate/20170925013807_create_pokeviewer_locations.rb') diff --git a/db/migrate/20170925013807_create_pokeviewer_locations.rb b/db/migrate/20170925013807_create_pokeviewer_locations.rb new file mode 100644 index 0000000..9070077 --- /dev/null +++ b/db/migrate/20170925013807_create_pokeviewer_locations.rb @@ -0,0 +1,9 @@ +class CreatePokeviewerLocations < ActiveRecord::Migration[5.1] + def change + create_table :pokeviewer_locations do |t| + t.string :name, null: false + + t.timestamps + end + end +end -- cgit 1.4.1