Difference between revisions of "Database Table: blobcache"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: This table needs a description.)
m (Robot: Updating: Format, type)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Database Table|name=blobcache|table type=global}}
+
{{Database Table|name=blobcache|table type=global|need desc=1|repo=dw-free}}
[[Category:Database Tables Needing Description]]
+
 
= Definition =
 
= Definition =
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE blobcache (
 
CREATE TABLE blobcache (
  bckey VARCHAR(40) NOT NULL,
+
    bckey VARCHAR(40) NOT NULL,
  PRIMARY KEY (bckey),
+
    PRIMARY KEY (bckey),
  dateupdate  DATETIME,
+
    dateupdate  DATETIME,
  value    MEDIUMBLOB
+
    value    MEDIUMBLOB
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer|no_out_rels=1}}
{{Database Table Footer}}
+

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
)

Relationships