Difference between revisions of "Database Table: usermsgproplist"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'usermsgproplist =Definition= <source lang="sql"> CREATE TABLE usermsgproplist ( propid SMALLINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, na...')
 
m (Robot: Updating: Format)
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Category: Database Table|usermsgproplist]]
+
{{Database Table|name=usermsgproplist|table type=global|need desc=1|repo=dw-free}}
=Definition=
+
You can see the props that get populated into this table at [[Proplists/usermsgprop]].
 +
= 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]]
+

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