Difference between revisions of "Database Table: talkleft xfp"

From Dreamwidth Notes
Jump to: navigation, search
(New page: Historic. Global. Stores a user's posts on other clusters, when either 1) that user isn't clustered themselves yet, or 2) we're doing a mass conversion (moveucluster.pl) and don't want to ...)
 
m (Robot: Updating: Format, definition)
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Historic. Global. Stores a user's posts on other clusters, when either 1) that user isn't clustered themselves yet, or 2) we're doing a mass conversion (moveucluster.pl) and don't want to look it up. A maintenance task (clean_caches) moves data from here to talkleft on clusters.
+
{{Database Table|name=talkleft_xfp|table type=global|repo=dw-free}}
 
+
[[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 =
Note: before blowing this away, first check to make sure that clean_caches no longer tries to access this database.
+
<source lang="sql">
 
+
CREATE TABLE talkleft_xfp (
[[Category: Obsolete 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    INT UNSIGNED NOT NULL,
 +
    publicitem  ENUM('1','0') NOT NULL DEFAULT '1'
 +
)
 +
</source>
 +
{{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