Files
archived-hc-harbor/db/migrate/20250628011017_create_solid_cache_entries.rb
2025-06-27 21:26:29 -04:00

16 lines
481 B
Ruby

class CreateSolidCacheEntries < ActiveRecord::Migration[8.0]
def change
create_table :solid_cache_entries do |t|
t.binary :key, limit: 1024, null: false
t.binary :value, limit: 536870912, null: false
t.datetime :created_at, null: false
t.integer :key_hash, limit: 8, null: false
t.integer :byte_size, limit: 4, null: false
t.index :byte_size
t.index [ :key_hash, :byte_size ]
t.index :key_hash, unique: true
end
end
end