summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-04-07 20:44:37 -0400
committerDavid Gay <david@davidgay.org>2021-04-07 20:44:44 -0400
commit5fc450ebd4249efc15e41b1b152a214697f5f415 (patch)
tree127f3452ebc7511eb71f1e490c44aa97f84d0c40 /db/schema.rb
parentf27be0dce605412440b6317cd568610f01079f32 (diff)
PTU natures
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 927a80f..33dd112 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 2021_04_07_005347) do
+ActiveRecord::Schema.define(version: 2021_04_08_001502) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -27,6 +27,14 @@ ActiveRecord::Schema.define(version: 2021_04_07_005347) do
t.datetime "updated_at", precision: 6, null: false
end
+ create_table "ptu_natures", force: :cascade do |t|
+ t.string "name"
+ t.string "raises"
+ t.string "lowers"
+ t.datetime "created_at", precision: 6, null: false
+ t.datetime "updated_at", precision: 6, null: false
+ end
+
create_table "ptu_pokemons", force: :cascade do |t|
t.string "name"
t.integer "base_hp"