Difference between revisions of "Database Table: dw paidstatus"

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

Revision as of 15:39, 31 March 2009

Definition

CREATE TABLE dw_paidstatus (
    userid INT UNSIGNED NOT NULL,
    typeid SMALLINT UNSIGNED NOT NULL,
    expiretime INT UNSIGNED,
    permanent tinyint UNSIGNED NOT NULL,
    lastemail INT UNSIGNED,
 
    PRIMARY KEY (userid),
    INDEX (expiretime)
)

Relationships

Location

Global database