Difference between revisions of "Database Table: usermsgproplist"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format, needs desc, definition)
m (Robot: Updating: Format)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Database Table|name=usermsgproplist|table type=global|need desc=1}}
+
{{Database Table|name=usermsgproplist|table type=global|need desc=1|repo=dw-free}}
 +
You can see the props that get populated into this table at [[Proplists/usermsgprop]].
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">

Latest revision as of 06:03, 18 December 2011

This is a global table. You can see the props that get populated into this table at Proplists/usermsgprop.

Definition

CREATE TABLE usermsgproplist (
    propid  SMALLINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
    name    VARCHAR(255) DEFAULT NULL,
    des     VARCHAR(255) DEFAULT NULL,
 
    UNIQUE KEY (name)
)

Relationships