mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-07 03:29:19 +02:00
9 lines
297 B
SQL
9 lines
297 B
SQL
-- Migration 007: Add system_cache table for admin system page caching
|
|
-- Stores JSON-encoded status snapshots keyed by section with a TTL mechanism.
|
|
|
|
CREATE TABLE IF NOT EXISTS system_cache (
|
|
key TEXT PRIMARY KEY,
|
|
value TEXT NOT NULL,
|
|
updated_at INTEGER NOT NULL
|
|
);
|