Difference between revisions of "Database Table: pendcomments"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'pendcomments =Definition= <source lang="sql"> CREATE TABLE pendcomments ( jid int(10) unsigned NOT NULL, pendcid int(10) unsigned NOT NULL, dat...')
 
Line 1: Line 1:
[[Category: Database Table|pendcomments]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE pendcomments (
 
CREATE TABLE pendcomments (
Line 12: Line 12:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Clustered database]]
 
[[Clustered database]]
 +
 +
[[Category: Database Tables|pendcomments]]

Revision as of 15:17, 31 March 2009

Definition

CREATE TABLE pendcomments (
  jid INT(10) UNSIGNED NOT NULL,
  pendcid INT(10) UNSIGNED NOT NULL,
  DATA BLOB NOT NULL,
  datesubmit INT(10) UNSIGNED NOT NULL,
  PRIMARY KEY (pendcid, jid),
  KEY (datesubmit)
)

Relationships

Location

Clustered database