Difference between revisions of "Database Table: talk2"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format, needs desc, definition)
(Robot: Updating: Format)
Line 1: Line 1:
{{Database Table|name=talk2|table type=clustered|need desc=1}}
+
{{Database Table|name=talk2|table type=clustered|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 clustered table.

Definition

CREATE TABLE talk2 (
    journalid INT UNSIGNED NOT NULL,
    jtalkid MEDIUMINT UNSIGNED NOT NULL,
    nodetype CHAR(1) NOT NULL DEFAULT '',
    nodeid INT UNSIGNED NOT NULL DEFAULT '0',
    parenttalkid MEDIUMINT UNSIGNED NOT NULL,
    posterid INT UNSIGNED NOT NULL DEFAULT '0',
    datepost DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
    state CHAR(1) DEFAULT 'A',
 
    PRIMARY KEY  (journalid,jtalkid),
    KEY (nodetype,journalid,nodeid),
    KEY (journalid,state,nodetype),
    KEY (posterid)
)

Relationships