Difference between revisions of "Database Table: userpic2"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format, needs desc, definition)
(Robot: Updating: Format)
 
Line 1: Line 1:
{{Database Table|name=userpic2|table type=clustered|need desc=1}}
+
{{Database Table|name=userpic2|table type=clustered|need desc=1|repo=dw-free}}
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">

Latest revision as of 16:02, 22 July 2010

This is a clustered table.

Definition

CREATE TABLE userpic2 (
    picid INT(10) UNSIGNED NOT NULL,
    userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
    fmt CHAR(1) DEFAULT NULL,
    width SMALLINT(6) NOT NULL DEFAULT '0',
    height SMALLINT(6) NOT NULL DEFAULT '0',
    state CHAR(1) NOT NULL DEFAULT 'N',
    picdate datetime DEFAULT NULL,
    md5base64 CHAR(22) NOT NULL DEFAULT '',
    comment VARCHAR(255) BINARY NOT NULL DEFAULT '',
    description VARCHAR(255) BINARY NOT NULL DEFAULT '',
    flags tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
    location enum('blob','disk','mogile') DEFAULT NULL,
 
    PRIMARY KEY  (userid, picid)
)

Relationships