Difference between revisions of "Database Table: syndicated"
From Dreamwidth Notes
(Created page with 'syndicated =Definition= <source lang="sql"> CREATE TABLE syndicated ( userid INT UNSIGNED NOT NULL, synurl VARCHAR(255), checknext DATETI...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE syndicated | CREATE TABLE syndicated | ||
Line 16: | Line 16: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = Location = | ||
− | |||
[[Global database]] | [[Global database]] | ||
+ | |||
+ | [[Category: Database Tables|syndicated]] |
Revision as of 15:22, 31 March 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) )