Difference between revisions of "Database Table: commenturls"
From Dreamwidth Notes
(removed from source) |
(We keep removed tables around in the wiki) |
||
Line 1: | Line 1: | ||
+ | {{Database Table|name=commenturls|table type=global|need desc=1}} | ||
+ | = Definition = | ||
+ | <source lang="sql"> | ||
+ | CREATE TABLE commenturls ( | ||
+ | posterid int unsigned NOT NULL, | ||
+ | journalid int unsigned NOT NULL, | ||
+ | jtalkid mediumint unsigned NOT NULL, | ||
+ | timecreate int unsigned NOT NULL, | ||
+ | url varchar(255) NOT NULL, | ||
+ | INDEX (timecreate) | ||
+ | ) | ||
+ | </source> | ||
+ | {{Database Table Footer}} |
Revision as of 21:51, 11 May 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 commenturls ( posterid INT UNSIGNED NOT NULL, journalid INT UNSIGNED NOT NULL, jtalkid mediumint UNSIGNED NOT NULL, timecreate INT UNSIGNED NOT NULL, url VARCHAR(255) NOT NULL, INDEX (timecreate) )