mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
16 lines
481 B
Ruby
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
|