Difference between revisions of "Database Table: ml text"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format, needs desc, definition)
m (Robot: Updating: Format, definition)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Database Table|name=ml_text|table type=global|need desc=1}}
+
{{Database Table|name=ml_text|table type=global|need desc=1|repo=dw-free}}
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">
Line 11: Line 11:
 
     text    TEXT NOT NULL,
 
     text    TEXT NOT NULL,
 
     userid  INT UNSIGNED NOT NULL
 
     userid  INT UNSIGNED NOT NULL
) TYPE=MYISAM
+
) ENGINE=MYISAM
 
</source>
 
</source>
 
{{Database Table Footer}}
 
{{Database Table Footer}}

Latest revision as of 23:07, 28 November 2012

This is a global table.

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
) ENGINE=MYISAM

Relationships