Difference between revisions of "Database Table: eventtypelist"

From Dreamwidth Notes
Jump to: navigation, search
m (reformat, right category)
(Robot: Updating: Format)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
{{Database Table|name=eventtypelist|table type=global|need desc=1|repo=dw-free}}
 
= Definition =
 
= Definition =
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE eventtypelist (
 
CREATE TABLE eventtypelist (
  etypeid  SMALLINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
+
    etypeid  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|eventtypelist]]
+

Latest revision as of 16:03, 22 July 2010

This is a global table.

Definition

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

Relationships