diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-30 14:34:22 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-30 14:34:22 -0400 |
commit | e9f3ed0795b1827472337e9bd0b108dec8d7cdea (patch) | |
tree | 4956a4c359e3840c068f2c8625812bd2efd864ab /db/schema.rb | |
parent | 94e2fa2ac32a88dfd802653f30f536c45845159b (diff) | |
download | thoughts-e9f3ed0795b1827472337e9bd0b108dec8d7cdea.tar.gz thoughts-e9f3ed0795b1827472337e9bd0b108dec8d7cdea.tar.bz2 thoughts-e9f3ed0795b1827472337e9bd0b108dec8d7cdea.zip |
Installed Wittle
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 541f1c1..b036d7f 100644 --- a/db/schema.rb +++ b/db/schema.rb | |||
@@ -10,7 +10,7 @@ | |||
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[7.0].define(version: 2023_10_21_020306) do | 13 | ActiveRecord::Schema[7.1].define(version: 2023_10_30_181440) do |
14 | create_table "active_storage_attachments", force: :cascade do |t| | 14 | create_table "active_storage_attachments", force: :cascade do |t| |
15 | t.string "name", null: false | 15 | t.string "name", null: false |
16 | t.string "record_type", null: false | 16 | t.string "record_type", null: false |
@@ -416,6 +416,24 @@ ActiveRecord::Schema[7.0].define(version: 2023_10_21_020306) do | |||
416 | t.index ["votable_type", "votable_id"], name: "index_votes_on_votable" | 416 | t.index ["votable_type", "votable_id"], name: "index_votes_on_votable" |
417 | end | 417 | end |
418 | 418 | ||
419 | create_table "wittle_puzzles", force: :cascade do |t| | ||
420 | t.text "data" | ||
421 | t.text "solved_data" | ||
422 | t.string "category" | ||
423 | t.datetime "created_at", null: false | ||
424 | t.datetime "updated_at", null: false | ||
425 | end | ||
426 | |||
427 | create_table "wittle_scores", force: :cascade do |t| | ||
428 | t.integer "puzzle_id", null: false | ||
429 | t.string "name" | ||
430 | t.string "ip" | ||
431 | t.integer "seconds_taken" | ||
432 | t.datetime "created_at", null: false | ||
433 | t.datetime "updated_at", null: false | ||
434 | t.index ["puzzle_id"], name: "index_wittle_scores_on_puzzle_id" | ||
435 | end | ||
436 | |||
419 | add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id" | 437 | add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id" |
420 | add_foreign_key "active_storage_variant_records", "active_storage_blobs", column: "blob_id" | 438 | add_foreign_key "active_storage_variant_records", "active_storage_blobs", column: "blob_id" |
421 | add_foreign_key "blogs", "users" | 439 | add_foreign_key "blogs", "users" |