nextcloud/3rdparty/aws-sdk/lib/cachecore/_sql/sqlite3.sql

2 lines
99 B
SQL
Executable File

CREATE TABLE cache (id TEXT, expires NUMERIC, data BLOB);
CREATE UNIQUE INDEX idx ON cache(id ASC);