monorepo/cloud/maplepress-backend/migrations/001_create_cache.up.cql

5 lines
116 B
SQL

CREATE TABLE IF NOT EXISTS maplepress.cache (
key TEXT PRIMARY KEY,
value BLOB,
expires_at TIMESTAMP
);