Difference between revisions of "Database Table: userproplite2"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: This table needs a description.)
(Robot: Updating: Format)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Database Table|name=userproplite2|table type=clustered}}
+
{{Database Table|name=userproplite2|table type=clustered|repo=dw-free}}
 
[[Description::This table is used to store multihomed userprops on the clustered database.]] It represents the same dataset as {{DBTable|userprop}}, but blank values are saved as empty strings in {{DBTable|userproplite2}}, and discarded from {{DBTable|userprop}}.
 
[[Description::This table is used to store multihomed userprops on the clustered database.]] It represents the same dataset as {{DBTable|userprop}}, but blank values are saved as empty strings in {{DBTable|userproplite2}}, and discarded from {{DBTable|userprop}}.
[[Category:Database Tables Needing Description]]
 
 
= Definition =
 
= Definition =
 
 
<source lang="sql">
 
<source lang="sql">
userid int(10) unsigned NOT NULL default '0',
+
CREATE TABLE userproplite2 (
upropid smallint(5) unsigned NOT NULL default '0',
+
    userid int(10) unsigned NOT NULL default '0',
value varchar(255) default NULL,
+
    upropid smallint(5) unsigned NOT NULL default '0',
PRIMARY KEY  (userid,upropid),
+
    value varchar(255) default NULL,
KEY (upropid)
+
 
 +
    PRIMARY KEY  (userid,upropid),
 +
    KEY (upropid)
 +
)
 
</source>
 
</source>
 
{{Database Table Footer}}
 
{{Database Table Footer}}

Latest revision as of 16:01, 22 July 2010

This is a clustered table. This table is used to store multihomed userprops on the clustered database. It represents the same dataset as userprop, but blank values are saved as empty strings in userproplite2, and discarded from userprop.

Definition

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

Relationships

Outgoing

  • Foreign key: upropid to userproplist.upropid
  • Foreign key: userid to user.userid