Difference between revisions of "Database Table: ml items"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'ml_items =Definition= <source lang="sql"> CREATE TABLE ml_items ( dmid TINYINT UNSIGNED NOT NULL, itid MEDIUMINT UNSIGNED AUTO_INCREMENT ...')
 
Line 1: Line 1:
[[Category: Database Table|ml_items]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE ml_items
 
CREATE TABLE ml_items
Line 13: Line 13:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|ml_items]]

Revision as of 11:17, 2 April 2009

Definition

CREATE TABLE ml_items
(
   dmid    TINYINT UNSIGNED NOT NULL,
   itid    MEDIUMINT UNSIGNED AUTO_INCREMENT NOT NULL,
   PRIMARY KEY (dmid, itid),
   itcode  VARCHAR(80) NOT NULL,
   UNIQUE  (dmid, itcode),
   notes   MEDIUMTEXT
) TYPE=MYISAM

Relationships

Location

Global database