Difference between revisions of "Database Table: blobcache"
From Dreamwidth Notes
(Created page with 'blobcache =Definition= <source lang="sql"> CREATE TABLE blobcache ( bckey VARCHAR(40) NOT NULL, PRIMARY KEY (bckey), dateupdate DATETIME, va...') |
Exor674Bot (Talk | contribs) m (Robot: Updating: Format, type) |
||
(12 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{Database Table|name=blobcache|table type=global|need desc=1|repo=dw-free}} | |
− | =Definition= | + | = Definition = |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE blobcache ( | CREATE TABLE blobcache ( | ||
− | + | bckey VARCHAR(40) NOT NULL, | |
− | + | PRIMARY KEY (bckey), | |
− | + | dateupdate DATETIME, | |
− | + | value MEDIUMBLOB | |
) | ) | ||
</source> | </source> | ||
− | + | {{Database Table Footer|no_out_rels=1}} | |
− | = | + | |
− | + | ||
− | + | ||
− | + |
Latest revision as of 18:16, 4 December 2012
This is a global table.
Definition
CREATE TABLE blobcache ( bckey VARCHAR(40) NOT NULL, PRIMARY KEY (bckey), dateupdate DATETIME, VALUE MEDIUMBLOB )