Difference between revisions of "Database Table: ml text"

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

Revision as of 14:50, 1 April 2009

Definition

CREATE TABLE ml_text
(
   dmid  TINYINT UNSIGNED NOT NULL,
   txtid  INT UNSIGNED AUTO_INCREMENT NOT NULL,
   PRIMARY KEY (dmid, txtid),
   lnid   SMALLINT UNSIGNED NOT NULL,
   itid   SMALLINT UNSIGNED NOT NULL,
   INDEX (lnid, dmid, itid),
   text    TEXT NOT NULL,
   userid  INT UNSIGNED NOT NULL
) TYPE=MYISAM

Relationships

Location

Global database