Difference between revisions of "Database Table: pendcomments"
From Dreamwidth Notes
(Created page with 'pendcomments =Definition= <source lang="sql"> CREATE TABLE pendcomments ( jid int(10) unsigned NOT NULL, pendcid int(10) unsigned NOT NULL, dat...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE pendcomments ( | CREATE TABLE pendcomments ( | ||
Line 12: | Line 12: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = 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) )