Difference between revisions of "Database Table: syndicated"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format, needs desc, definition)
(Robot: Updating: Format)
Line 1: Line 1:
{{Database Table|name=syndicated|table type=global|need desc=1}}
+
{{Database Table|name=syndicated|table type=global|need desc=1|repo=dw-free}}
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">

Revision as of 16:00, 22 July 2010

This is a global table.

Definition

CREATE TABLE syndicated (
    userid  INT UNSIGNED NOT NULL,
    synurl  VARCHAR(255),
    checknext  DATETIME NOT NULL,
    lastcheck  DATETIME,
    lastmod    INT UNSIGNED, # unix TIME
    etag       VARCHAR(80),
 
    PRIMARY KEY (userid),
    UNIQUE (synurl),
    INDEX (checknext)
)

Relationships