Difference between revisions of "Database Table: ml items"
From Dreamwidth Notes
Exor674Bot (Talk | contribs) (Robot: Updating: Format, needs desc, definition) |
Exor674Bot (Talk | contribs) (Robot: Updating: Format) |
||
Line 1: | Line 1: | ||
− | {{Database Table|name=ml_items|table type=global|need desc=1}} | + | {{Database Table|name=ml_items|table type=global|need desc=1|repo=dw-free}} |
= Definition = | = Definition = | ||
<source lang="sql"> | <source lang="sql"> |
Revision as of 15:59, 22 July 2010
This is a global table.
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), proofed TINYINT NOT NULL DEFAULT 0, -- boolean, really INDEX (proofed), updated TINYINT NOT NULL DEFAULT 0, -- boolean, really INDEX (updated), visible TINYINT NOT NULL DEFAULT 0, -- also boolean notes MEDIUMTEXT ) TYPE=MYISAM