Database Table: pendcomments

From Dreamwidth Notes
Jump to: navigation, search

This is a clustered table.

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