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

6 lines
137 B
SQL
Executable File

CREATE TABLE "cache" (
expires timestamp without time zone NOT NULL,
id character(40) NOT NULL,
data text NOT NULL
)
WITH (OIDS=TRUE);