Difference between revisions of "Database Table: usermsgproplist"
From Dreamwidth Notes
Exor674Bot (Talk | contribs) m (Robot: Converting database table to use database table header template.) |
Exor674Bot (Talk | contribs) m (Robot: Updating: Format) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | {{Database Table|name=usermsgproplist|table type=global}} | + | {{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, | |
− | + | name VARCHAR(255) DEFAULT NULL, | |
− | + | des VARCHAR(255) DEFAULT NULL, | |
− | + | ||
+ | UNIQUE KEY (name) | ||
) | ) | ||
</source> | </source> | ||
− | |||
{{Database Table Footer}} | {{Database Table Footer}} |
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) )