Difference between revisions of "Database Table: dw paidstatus"
From Dreamwidth Notes
(Created page with 'dw_paidstatus =Definition= <source lang="sql"> CREATE TABLE dw_paidstatus ( userid int unsigned NOT NULL, typeid smallint unsigned NOT NULL, ...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = 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 = | ||
− | |||
[[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) )