Database Table: pp_trans

From Dreamwidth Notes
Revision as of 12:38, 27 January 2010 by Exor674 (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. This is a global table.

Definition

CREATE TABLE pp_trans (
    ppid INT UNSIGNED NOT NULL,
    cartid INT UNSIGNED NOT NULL,
 
    transactionid VARCHAR(19),
    transactiontype VARCHAR(15),
    paymenttype VARCHAR(7),
    ordertime INT UNSIGNED,
    amt DECIMAL(10,2),
    currencycode VARCHAR(3),
    feeamt DECIMAL(10,2),
    settleamt DECIMAL(10,2),
    taxamt DECIMAL(10,2),
    paymentstatus VARCHAR(20),
    pendingreason VARCHAR(20),
    reasoncode VARCHAR(20),
    ack VARCHAR(20),
    TIMESTAMP INT UNSIGNED,
    build VARCHAR(20),
 
    INDEX (ppid),
    INDEX (cartid)
)

Relationships