Difference between revisions of "Database Table: usermsgproplist"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format)
Line 1: Line 1:
 
{{Database Table|name=usermsgproplist|table type=global|need desc=1|repo=dw-free}}
 
{{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">

Revision as of 06:02, 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