Difference between revisions of "Database Table: usermsgproplist"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Updating: Format)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 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">
 
CREATE TABLE usermsgproplist (
 
CREATE TABLE usermsgproplist (
  propid  SMALLINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
+
    propid  SMALLINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
  name    VARCHAR(255) DEFAULT NULL,
+
    name    VARCHAR(255) DEFAULT NULL,
  des    VARCHAR(255) DEFAULT NULL,
+
    des    VARCHAR(255) DEFAULT NULL,
  UNIQUE KEY (name)
+
 
 +
    UNIQUE KEY (name)
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
= Relationships =
+
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category: Database Tables|usermsgproplist]]
+

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