diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-10-10 22:46:46 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-10-10 22:46:46 -0400 |
commit | 0f32f526b73ecfd10012c0db9d7c4a4f15251a73 (patch) | |
tree | d456a80075b3a0680fa34214c51f47355ca24d43 /test/dummy | |
parent | 09ed6a6c7567bbd01dc236570982bf7ea31e11e6 (diff) | |
download | pokeviewer-0f32f526b73ecfd10012c0db9d7c4a4f15251a73.tar.gz pokeviewer-0f32f526b73ecfd10012c0db9d7c4a4f15251a73.tar.bz2 pokeviewer-0f32f526b73ecfd10012c0db9d7c4a4f15251a73.zip |
Added type and ability data to species model
Diffstat (limited to 'test/dummy')
-rw-r--r-- | test/dummy/db/schema.rb | 14 |
1 files changed, 13 insertions, 1 deletions
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 @@ | |||
10 | # | 10 | # |
11 | # It's strongly recommended that you check this file into your version control system. | 11 | # It's strongly recommended that you check this file into your version control system. |
12 | 12 | ||
13 | ActiveRecord::Schema.define(version: 20171004203404) do | 13 | ActiveRecord::Schema.define(version: 20171011015648) do |
14 | |||
15 | create_table "pokeviewer_abilities", force: :cascade do |t| | ||
16 | t.string "name", limit: 191, null: false | ||
17 | t.string "description", null: false | ||
18 | t.datetime "created_at", null: false | ||
19 | t.datetime "updated_at", null: false | ||
20 | t.index ["name"], name: "index_pokeviewer_abilities_on_name", unique: true | ||
21 | end | ||
14 | 22 | ||
15 | create_table "pokeviewer_gift_ribbons", force: :cascade do |t| | 23 | create_table "pokeviewer_gift_ribbons", force: :cascade do |t| |
16 | t.string "description", null: false | 24 | t.string "description", null: false |
@@ -133,6 +141,10 @@ ActiveRecord::Schema.define(version: 20171004203404) do | |||
133 | t.string "name", limit: 191, null: false | 141 | t.string "name", limit: 191, null: false |
134 | t.datetime "created_at", null: false | 142 | t.datetime "created_at", null: false |
135 | t.datetime "updated_at", null: false | 143 | t.datetime "updated_at", null: false |
144 | t.string "type_1", null: false | ||
145 | t.string "type_2" | ||
146 | t.integer "ability_1_id", null: false | ||
147 | t.integer "ability_2_id" | ||
136 | t.index ["name"], name: "index_pokeviewer_species_on_name", unique: true | 148 | t.index ["name"], name: "index_pokeviewer_species_on_name", unique: true |
137 | end | 149 | end |
138 | 150 | ||