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

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'dw_pp_log =Definition= <source lang="sql"> CREATE TABLE dw_pp_log ( paymentid int unsigned NOT NULL, transdate int unsigned NOT NULL, pp_...')
 
Line 1: Line 1:
[[Category: Database Table|dw_pp_log]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE dw_pp_log (
 
CREATE TABLE dw_pp_log (
Line 11: Line 11:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|dw_pp_log]]

Revision as of 15:21, 31 March 2009

Definition

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

Relationships

Location

Global database