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…')
 
(Robot: Updating: Format, needs desc)
Line 1: Line 1:
{{Database Table|name=pp_trans|table type=global}}
+
{{Database Table|name=pp_trans|table type=global|need desc=1}}
[[Category:Database Tables Needing Description]]
+
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">

Revision as of 07:09, 28 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