Page MenuHomePhorge

2016112200.sql
No OneTemporary

Authored By
Unknown
Size
635 B
Referenced Files
None
Subscribers
None

2016112200.sql

DROP TABLE "cache";
DROP TABLE "cache_shared";
CREATE TABLE "cache" (
"user_id" integer NOT NULL
REFERENCES "users" ("user_id") ON DELETE CASCADE,
"cache_key" varchar(128) NOT NULL,
"expires" timestamp with time zone DEFAULT NULL,
"data" long 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,
"expires" timestamp with time zone DEFAULT NULL,
"data" long NOT NULL,
PRIMARY KEY ("cache_key")
);
CREATE INDEX "cache_shared_expires_idx" ON "cache_shared" ("expires");

File Metadata

Mime Type
text/plain
Expires
Fri, Apr 24, 1:35 PM (9 h, 56 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ee/9f/f90f3c572f2dc6cc05c8e7e8f25a
Default Alt Text
2016112200.sql (635 B)

Event Timeline