From 0f32f526b73ecfd10012c0db9d7c4a4f15251a73 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 10 Oct 2017 22:46:46 -0400 Subject: Added type and ability data to species model --- test/dummy/db/schema.rb | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'test/dummy') diff --git a/test/dummy/db/schema.rb b/test/dummy/db/schema.rb index 5ae8e1d..a527d06 100644 --- a/test/dummy/db/schema.rb +++ b/test/dummy/db/schema.rb @@ -10,7 +10,15 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20171004203404) do +ActiveRecord::Schema.define(version: 20171011015648) do + + create_table "pokeviewer_abilities", force: :cascade do |t| + t.string "name", limit: 191, null: false + t.string "description", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["name"], name: "index_pokeviewer_abilities_on_name", unique: true + end create_table "pokeviewer_gift_ribbons", force: :cascade do |t| t.string "description", null: false @@ -133,6 +141,10 @@ ActiveRecord::Schema.define(version: 20171004203404) do t.string "name", limit: 191, null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.string "type_1", null: false + t.string "type_2" + t.integer "ability_1_id", null: false + t.integer "ability_2_id" t.index ["name"], name: "index_pokeviewer_species_on_name", unique: true end -- cgit 1.4.1