Difference between revisions of "Database Table: pp trans"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format, needs desc)
(Robot: Updating: Format)
 
Line 1: Line 1:
{{Database Table|name=pp_trans|table type=global|need desc=1}}
+
{{Database Table|name=pp_trans|table type=global|need desc=1|repo=dw-free}}
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">

Latest revision as of 16:03, 22 July 2010

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