Difference between revisions of "Database Table: userpicblob2"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Changing Category:Database Tables)
m
Line 1: Line 1:
Clustered. Stores the actual userpic blobs. Optionally a blob server can be used instead of storing them here in the database.
+
{{#set:name=userpicblob2|table type=clustered}}
 +
Clustered. [[Description::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.
 
Where non-mogile sites store userpics.
Line 13: Line 14:
 
) max_rows=10000000
 
) max_rows=10000000
 
</source>
 
</source>
 
+
{{Database Table Footer}}
= Relationships =
+
 
+
= Location =
+
 
+
[[Clustered database]]
+
 
+
[[Category:Database Tables Needing Conversion|userpicblob2]]
+

Revision as of 18:46, 5 October 2009

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