diff options
Diffstat (limited to 'test/dummy/db')
| -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 | ||
