common/sql/cache.sql

11 lines
215 B
MySQL
Raw Normal View History

2021-11-04 22:37:16 +00:00
-- a key-value table used for the json-cache
CREATE TABLE cache (
key STRING
PRIMARY KEY,
value TEXT
NOT NULL,
expiration INT
DEFAULT 0
);