Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3312266
2016112200.sql
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
635 B
Referenced Files
None
Subscribers
None
2016112200.sql
View Options
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
Details
Attached
Mime Type
text/plain
Expires
Thu, Apr 9, 1:41 PM (4 h, 33 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
464614
Default Alt Text
2016112200.sql (635 B)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment