Database Table: talkleft

From Dreamwidth Notes
Revision as of 04:04, 8 June 2013 by Exor674Bot (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This is a clustered table.

Definition

CREATE TABLE talkleft (
    userid    INT UNSIGNED NOT NULL,
    posttime  INT UNSIGNED NOT NULL,
    INDEX (userid, posttime),
    journalid  INT UNSIGNED NOT NULL,
    nodetype   CHAR(1) NOT NULL,
    nodeid     INT UNSIGNED NOT NULL,
    INDEX (journalid, nodetype, nodeid),
    jtalkid    INT UNSIGNED NOT NULL,
    publicitem   ENUM('1','0') NOT NULL DEFAULT '1'
)

Relationships