summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2023-11-02 20:46:20 -0400
committerDavid Gay <david@davidgay.org>2023-11-02 20:46:20 -0400
commit4cb128fa24da1d960a20b981aac7b82e2868db26 (patch)
tree4e0d6062f19a11e9e63277421ae431903777e3d4 /db/schema.rb
parent252428f1e9e45254d2e4fc8cfa79e83ea183c56b (diff)
Support and add gen 2 sprites, including unowns
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index f6cad56..0e65c84 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[7.1].define(version: 2023_11_02_230947) do
+ActiveRecord::Schema[7.1].define(version: 2023_11_03_002142) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -60,7 +60,7 @@ ActiveRecord::Schema[7.1].define(version: 2023_11_02_230947) do
end
create_table "pokemons", force: :cascade do |t|
- t.integer "pokedex_num", null: false
+ t.string "pokedex_num", null: false
t.string "name", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false