Database Table: faquses

From Dreamwidth Notes
Jump to: navigation, search

This is a global table.

Definition

CREATE TABLE faquses (
    faqid MEDIUMINT UNSIGNED NOT NULL,
    userid INT UNSIGNED NOT NULL,
    dateview DATETIME NOT NULL,
 
    PRIMARY KEY (userid, faqid),
    KEY (faqid),
    KEY (dateview)
)

Relationships