Difference between revisions of "Database Table: pp trans"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with '{{Database Table|name=pp_trans|table type=global}} Category:Database Tables Needing Description = Definition = <source lang="sql"> CREATE TABLE pp_trans ( ppid int unsign…')
(No difference)

Revision as of 12:38, 27 January 2010

"{{{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