Database Table: cc_log

From Dreamwidth Notes
Jump to: navigation, search

This is a global table.

Definition

CREATE TABLE cc_log (
    cartid INT UNSIGNED NOT NULL,
    ip VARCHAR(15),
    transtime INT UNSIGNED NOT NULL,
    req_content text NOT NULL,
    res_content text NOT NULL,
 
    INDEX (cartid)
)

Relationships