summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 0982ec0..f6cad56 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_223203) do
+ActiveRecord::Schema[7.1].define(version: 2023_11_02_230947) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -59,6 +59,13 @@ ActiveRecord::Schema[7.1].define(version: 2023_11_02_223203) do
t.datetime "updated_at", null: false
end
+ create_table "pokemons", force: :cascade do |t|
+ t.integer "pokedex_num", null: false
+ t.string "name", null: false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
create_table "runs", force: :cascade do |t|
t.string "title", null: false
t.text "description"