Difference between revisions of "Database Table: notifytypelist"

From Dreamwidth Notes
Jump to: navigation, search
m
(Robot: Updating: Format)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
+
{{Database Table|name=notifytypelist|table type=global|need desc=1|repo=dw-free}}
 
= Definition =
 
= Definition =
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE notifytypelist (
 
CREATE TABLE notifytypelist (
  ntypeid  SMALLINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
+
    ntypeid  SMALLINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
  class    VARCHAR(100),
+
    class    VARCHAR(100),
  UNIQUE (class)
+
 
 +
    UNIQUE (class)
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
= Relationships =
+
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category: Database Tables|notifytypelist]]
+

Latest revision as of 15:56, 22 July 2010

This is a global table.

Definition

CREATE TABLE notifytypelist (
    ntypeid   SMALLINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
    class     VARCHAR(100),
 
    UNIQUE (class)
)

Relationships