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

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'dw_pp_details =Definition= <source lang="sql"> CREATE TABLE dw_pp_details ( paymentid int unsigned NOT NULL, email varchar(255), firstna...')
 
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category: Database Table|dw_pp_details]]
+
{{Database Table|name=dw_pp_details|table type=global|repo=dw-free|removed=1|removed in=446f75a17f85}}
=Definition=
+
[[description::Designed for DW Payment system but never used.]]
 +
= Definition =
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE dw_pp_details (
 
CREATE TABLE dw_pp_details (
Line 13: Line 14:
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer|removed=1}}
=Relationships=
+
 
+
=Location=
+
[[Global database]]
+

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_details (
    paymentid INT UNSIGNED NOT NULL,
 
    email VARCHAR(255),
    firstname VARCHAR(255),
    lastname VARCHAR(255),
    payerid VARCHAR(255),
 
    PRIMARY KEY (paymentid)
)