Database Table: syndicated hubbub2

From Dreamwidth Notes
Revision as of 17:22, 9 October 2009 by Exor674 (Talk | contribs)

Jump to: navigation, search

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