Difference between revisions of "Database Table: syndicated hubbub2"

From Dreamwidth Notes
Jump to: navigation, search
m
m (Robot: Converting database table to use database table header template.)
Line 1: Line 1:
{{#set:name=syndicated_hubbub2|table type=global}}
+
{{Database Table|name=syndicated_hubbub2|table type=global}}
 
= Definition =
 
= Definition =
  

Revision as of 11:33, 27 January 2010

"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. This is a global table.

Definition

CREATE TABLE syndicated_hubbub2 (
    id INT UNSIGNED NOT NULL,
    userid INT UNSIGNED NOT NULL,
    huburl VARCHAR(255) NOT NULL,
    topicurl VARCHAR(255) NOT NULL,
    verifytoken VARCHAR(64) NOT NULL,
    lastseenat INT UNSIGNED NOT NULL,
    leasegoodto INT UNSIGNED,
    timespinged INT UNSIGNED NOT NULL DEFAULT '0',
 
    UNIQUE (userid, huburl, topicurl),
    UNIQUE (verifytoken),
    INDEX (topicurl),
    INDEX (leasegoodto),
    INDEX (lastseenat),
    PRIMARY KEY (id)
)

Relationships