Difference between revisions of "Database Table: syndicated"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Converting database table to use semantic mediawiki form.)
Line 1: Line 1:
 +
{{#set:name=syndicated|clustered=false}}
 
= Definition =
 
= Definition =
  
Line 16: Line 17:
 
</source>
 
</source>
  
= Relationships =
+
{{Database Table Footer}}
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category: Database Tables|syndicated]]
+

Revision as of 13:22, 2 October 2009

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