Difference between revisions of "Database Table: userproplite"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Converting database table to use semantic mediawiki form.)
m (Robot: Converting database table to use database table header template.)
Line 1: Line 1:
{{#set:name=userproplite|table type=global}}
+
{{Database Table|name=userproplite|table type=global}}
 
[[description::Associates users to properties at the global level.]] See also [[Database Table: userproplite2|userproplite2]]  
 
[[description::Associates users to properties at the global level.]] See also [[Database Table: userproplite2|userproplite2]]  
 
= Definition =
 
= Definition =

Revision as of 11:35, 27 January 2010

"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. This is a global table. Associates users to properties at the global level. See also userproplite2

Definition

CREATE TABLE userproplite (
  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