Difference between revisions of "Database Table: userpropblob"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'userpropblob =Definition= <source lang="sql"> CREATE TABLE userpropblob ( userid INT(10) unsigned NOT NULL default '0', upropid SMALLINT(5) u...')
 
Line 1: Line 1:
[[Category: Database Table|userpropblob]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE userpropblob (
 
CREATE TABLE userpropblob (
Line 10: Line 10:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Clustered database]]
 
[[Clustered database]]
 +
 +
[[Category: Database Tables|userpropblob]]

Revision as of 10:41, 4 April 2009

Definition

CREATE TABLE userpropblob (
    userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
    upropid SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
    VALUE BLOB,
    PRIMARY KEY (userid,upropid)
)

Relationships

Location

Clustered database