Difference between revisions of "Database Table: commenturls"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'commenturls =Definition= <source lang="sql"> CREATE TABLE commenturls ( posterid int unsigned NOT NULL, journalid int unsigned NOT NULL, jta...')
 
 
(15 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category: Database Table|commenturls]]
+
{{Database Table|name=commenturls|table type=global|repo=dw-free|removed=1|removed in=116bf9136f18}}
=Definition=
+
= Definition =
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE commenturls (
 
CREATE TABLE commenturls (
  posterid int unsigned NOT NULL,
+
    posterid int unsigned NOT NULL,
  journalid int unsigned NOT NULL,
+
    journalid int unsigned NOT NULL,
  jtalkid mediumint unsigned NOT NULL,
+
    jtalkid mediumint unsigned NOT NULL,
  timecreate int unsigned NOT NULL,
+
    timecreate int unsigned NOT NULL,
  url varchar(255) NOT NULL,
+
    url varchar(255) NOT NULL,
  INDEX (timecreate)
+
 
 +
    INDEX (timecreate)
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer|removed=1}}
=Relationships=
+
Foreign key posterid to [[Database Table: user|user]].userid
+
 
+
Foreign key journalid to [[Database Table: user|user]].userid
+
 
+
=Location=
+
[[Global database]]
+

Latest revision as of 16:20, 22 July 2010

Note: This table is removed and no longer used. This table was removed in dw-free changeset 116bf9136f18 [1]
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)
)