Difference between revisions of "Database Table: userpicblob2"

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 4: Line 4:
 
Where non-mogile sites store userpics.
 
Where non-mogile sites store userpics.
  
 +
[[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. Clustered. Stores the actual userpic blobs. Optionally a blob server can be used instead of storing them here in the database.

Where non-mogile sites store userpics.

Definition

CREATE TABLE userpicblob2 (
  userid INT UNSIGNED NOT NULL,
  picid INT UNSIGNED NOT NULL,
  imagedata BLOB,
  PRIMARY KEY (userid, picid)
) max_rows=10000000

Relationships