Difference between revisions of "Database Table: userpic2"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Converting database table to use database table header template.)
m (Robot: This table needs a description.)
Line 1: Line 1:
 
{{Database Table|name=userpic2|table type=clustered}}
 
{{Database Table|name=userpic2|table type=clustered}}
 +
[[Category:Database Tables Needing Description]]
 
= Definition =
 
= Definition =
  

Revision as of 12:00, 27 January 2010

"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. 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 '',
  flags tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
  location enum('blob','disk','mogile') DEFAULT NULL,
  PRIMARY KEY  (userid, picid)
)

Relationships