Server : Apache System : Linux server.lienzindia.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : plutus ( 1007) PHP Version : 7.4.33 Disable Function : NONE Directory : /var/webuzo-data/roundcube/SQL/postgres/ |
Upload File : |
DROP TABLE "cache"; DROP TABLE "cache_shared"; CREATE TABLE "cache" ( user_id integer NOT NULL REFERENCES users (user_id) ON DELETE CASCADE ON UPDATE CASCADE, cache_key varchar(128) DEFAULT '' NOT NULL, expires timestamp with time zone DEFAULT NULL, data text NOT NULL, PRIMARY KEY (user_id, cache_key) ); CREATE INDEX cache_expires_idx ON "cache" (expires); CREATE TABLE "cache_shared" ( cache_key varchar(255) NOT NULL PRIMARY KEY, expires timestamp with time zone DEFAULT NULL, data text NOT NULL ); CREATE INDEX cache_shared_expires_idx ON "cache_shared" (expires);