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...')
 
Line 1: Line 1:
[[Category: Database Table|usermsgproplist]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE usermsgproplist (
 
CREATE TABLE usermsgproplist (
Line 10: Line 10:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|usermsgproplist]]

Revision as of 10:20, 4 April 2009

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

Location

Global database