Difference between revisions of "Database Table: commenturls"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Changing Category:Database Tables)
Line 1: Line 1:
= Definition =
+
{[#set:name=commenturls|Table type=global}}
 
+
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE commenturls (
 
CREATE TABLE commenturls (
Line 11: Line 10:
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
= Relationships =
+
 
+
Foreign key posterid to [[Database Table: user|user]].userid
+
 
+
Foreign key journalid to [[Database Table: user|user]].userid
+
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category:Database Tables Needing Conversion|commenturls]]
+

Revision as of 00:15, 5 October 2009

{[#set:name=commenturls|Table type=global}}

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)
)

Relationships

Outgoing

  • Foreign key: journalid to user.userid
  • Foreign key: posterid to user.userid