Difference between revisions of "Database Table: eventtypelist"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Converting database table to use semantic mediawiki form.)
(Robot: Updating: Format)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{#set:name=eventtypelist|table type=global}}
+
{{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}}
 
{{Database Table Footer}}

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