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...')
 
Line 1: Line 1:
[[Category: Database Table|commenturls]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE commenturls (
 
CREATE TABLE commenturls (
Line 12: Line 12:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
Foreign key posterid to [[Database Table: user|user]].userid
+
  
Foreign key journalid to [[Database Table: user|user]].userid
+
Foreign key posterid to [[Database Tables: user|user]].userid
 +
 
 +
Foreign key journalid to [[Database Tables: user|user]].userid
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|commenturls]]

Revision as of 22:13, 30 March 2009

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

Relationships

Foreign key posterid to user.userid

Foreign key journalid to user.userid

Location

Global database