Difference between revisions of "Database Table: talkleft xfp"

From Dreamwidth Notes
Jump to: navigation, search
m (Insert data because this table is useful.)
Line 1: Line 1:
Global. 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.
+
{{#set:name=talkleft_xfp|table type=global}}
 
+
[[Description::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 [[Database Table: talkleft|talkleft]] (clustered).
 
See [[Database Table: talkleft|talkleft]] (clustered).
 +
= Definition =
  
See also http://bugs.dwscoalition.org/show_bug.cgi?id=1710#c30
+
<source lang="sql">
 
+
CREATE TABLE talkleft_xfp (
[[Category: Database Tables|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    MEDIUMINT UNSIGNED NOT NULL,
 +
    publicitem  ENUM('1','0') NOT NULL DEFAULT '1'
 +
)
 +
</source>
 +
{{Database Table Footer}}

Revision as of 17:17, 9 October 2009

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    MEDIUMINT UNSIGNED NOT NULL,
    publicitem   ENUM('1','0') NOT NULL DEFAULT '1'
)

Relationships