Database Table: syndicated

From Dreamwidth Notes
Revision as of 18:46, 2 October 2009 by Exor674Bot (Talk | contribs)

Jump to: navigation, search

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