Difference between revisions of "Database Table: weekuserusage"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'weekuserusage =Definition= <source lang="sql"> CREATE TABLE weekuserusage ( wknum SMALLINT UNSIGNED NOT NULL, userid INT UNSIGNED NOT NULL, ...')
 
 
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category: Database Table|weekuserusage]]
+
{{Database Table|name=weekuserusage|table type=global|repo=dw-free|removed=1|removed in=d5452249fa54}}
=Definition=
+
Removed in [http://bugs.dwscoalition.org/show_bug.cgi?id=138 bug 138]
 +
= Definition =
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE weekuserusage
 
CREATE TABLE weekuserusage
Line 11: Line 12:
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer|removed=1}}
=Relationships=
+
 
+
=Location=
+
[[Global database]]
+

Latest revision as of 16:31, 22 July 2010

Note: This table is removed and no longer used. This table was removed in dw-free changeset d5452249fa54 [1]
This is a global table. Removed in bug 138

Definition

CREATE TABLE weekuserusage
(
   wknum  SMALLINT UNSIGNED NOT NULL,
   userid INT UNSIGNED NOT NULL,
   PRIMARY KEY (wknum, userid),
   ubefore  SMALLINT UNSIGNED NOT NULL,
   uafter   SMALLINT UNSIGNED NOT NULL
)