ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
644 B

  1. # frozen_string_literal: true
  2. ActiveRecord::Schema[7.2].define(version: 1) do
  3. create_table "solid_cache_entries", force: :cascade do |t|
  4. t.binary "key", limit: 1024, null: false
  5. t.binary "value", limit: 536870912, null: false
  6. t.datetime "created_at", null: false
  7. t.integer "key_hash", limit: 8, null: false
  8. t.integer "byte_size", limit: 4, null: false
  9. t.index ["byte_size"], name: "index_solid_cache_entries_on_byte_size"
  10. t.index ["key_hash", "byte_size"], name: "index_solid_cache_entries_on_key_hash_and_byte_size"
  11. t.index ["key_hash"], name: "index_solid_cache_entries_on_key_hash", unique: true
  12. end
  13. end