Difference between revisions of "Database Table: dw pp log"

From Dreamwidth Notes
Jump to: navigation, search
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Designed for DW Payment system but never used. Removed in [http://hg.dwscoalition.org/dw-free/rev/446f75a17f85 changeset 446f75a17f85]
+
{{Database Table|name=dw_pp_log|table type=global|repo=dw-free|removed=1|removed in=446f75a17f85}}
 
+
[[description::Designed for DW Payment system but never used.]]
 
= Definition =
 
= Definition =
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE dw_pp_log (
 
CREATE TABLE dw_pp_log (
Line 12: Line 11:
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer|removed=1}}
= Relationships =
+
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category: Removed Database Tables|dw_pp_log]]
+

Latest revision as of 16:24, 22 July 2010

Note: This table is removed and no longer used. This table was removed in dw-free changeset 446f75a17f85 [1]
This is a global table. Designed for DW Payment system but never used.

Definition

CREATE TABLE dw_pp_log (
    paymentid INT UNSIGNED NOT NULL,
    transdate INT UNSIGNED NOT NULL,
    pp_log VARCHAR(3000) NOT NULL,
 
    INDEX (paymentid)
)