Difference between revisions of "Database Table: userproplite2"
From Dreamwidth Notes
Foxfirefey (Talk | contribs) m |
Foxfirefey (Talk | contribs) m (reformat) |
||
Line 1: | Line 1: | ||
− | This table is used to store multihomed userprops on the clustered database. It represents the same dataset as | + | 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}}. |
= Definition = | = Definition = | ||
Line 13: | Line 13: | ||
= Relationships = | = Relationships = | ||
− | * Foreign key <tt>upropid</tt> to | + | * Foreign key <tt>upropid</tt> to {{DBField|userproplist|upropid}} |
− | * Foreign key <tt>userid</tt> to | + | * Foreign key <tt>userid</tt> to {{DBField|user|userid}} |
= Location = | = Location = |
Revision as of 20:38, 26 March 2009
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
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
- Foreign key upropid to userproplist.upropid
- Foreign key userid to user.userid