Difference between revisions of "Database Table: syndicated hubbub2"
From Dreamwidth Notes
m (Created page with '{{#set:name=syndicated_hubbub2|table type=global}} = Definition = <source lang="sql"> CREATE TABLE syndicated_hubbub2 ( id INT UNSIGNED NOT NULL, userid INT UNSIGNED NOT…') |
Exor674Bot (Talk | contribs) (Robot: Updating: Format) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{Database Table|name=syndicated_hubbub2|table type=global|need desc=1|repo=dw-free}} |
= Definition = | = Definition = | ||
− | |||
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE syndicated_hubbub2 ( | CREATE TABLE syndicated_hubbub2 ( | ||
Line 20: | Line 19: | ||
PRIMARY KEY (id) | PRIMARY KEY (id) | ||
) | ) | ||
+ | </source> | ||
{{Database Table Footer}} | {{Database Table Footer}} |
Latest revision as of 16:00, 22 July 2010
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) )