Difference between revisions of "Database Table: eventtypelist"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'eventtypelist =Definition= <source lang="sql"> CREATE TABLE eventtypelist ( etypeid SMALLINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, class...')
 
m (reformat, right category)
Line 1: Line 1:
[[Category: Database Table|eventtypelist]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE eventtypelist (
 
CREATE TABLE eventtypelist (
Line 9: Line 9:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|eventtypelist]]

Revision as of 21:00, 26 March 2009

Definition

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

Relationships

Location

Global database