Difference between revisions of "Database Table: talkleft xfp"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format)
m (Robot: Updating: Format, definition)
 
Line 12: Line 12:
 
     nodeid    INT UNSIGNED NOT NULL,
 
     nodeid    INT UNSIGNED NOT NULL,
 
     INDEX (journalid, nodetype, nodeid),
 
     INDEX (journalid, nodetype, nodeid),
     jtalkid    MEDIUMINT UNSIGNED NOT NULL,
+
     jtalkid    INT UNSIGNED NOT NULL,
 
     publicitem  ENUM('1','0') NOT NULL DEFAULT '1'
 
     publicitem  ENUM('1','0') NOT NULL DEFAULT '1'
 
)
 
)
 
</source>
 
</source>
 
{{Database Table Footer}}
 
{{Database Table Footer}}

Latest revision as of 04:04, 8 June 2013

This is a global table. Stores comments when the database cluster of the user making the comment is unavailable. A maintenance task (clean_caches) moves data from here to talkleft on clusters. See talkleft (clustered).

Definition

CREATE TABLE talkleft_xfp (
    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