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)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Database Table|name=pp_trans|table type=global}}
+
{{Database Table|name=pp_trans|table type=global|need desc=1|repo=dw-free}}
[[Category:Database Tables Needing Description]]
+
 
= 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