Restore solid database schemas.

This commit is contained in:
Mike Dalessio
2025-11-10 11:50:21 -05:00
parent ec54014832
commit 0414befdfa
3 changed files with 149 additions and 3 deletions
+11 -1
View File
@@ -10,5 +10,15 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[8.2].define(version: 0) do
ActiveRecord::Schema[8.2].define(version: 1) do
create_table "solid_cache_entries", force: :cascade do |t|
t.integer "byte_size", limit: 4, null: false
t.datetime "created_at", null: false
t.binary "key", limit: 1024, null: false
t.integer "key_hash", limit: 8, null: false
t.binary "value", limit: 536870912, null: false
t.index ["byte_size"], name: "index_solid_cache_entries_on_byte_size"
t.index ["key_hash", "byte_size"], name: "index_solid_cache_entries_on_key_hash_and_byte_size"
t.index ["key_hash"], name: "index_solid_cache_entries_on_key_hash", unique: true
end
end