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, ...')
 
m (reformat, right category)
Line 1: Line 1:
[[Category: Database Table|weekuserusage]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE weekuserusage
 
CREATE TABLE weekuserusage
Line 12: Line 12:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|weekuserusage]]

Revision as of 20:40, 26 March 2009

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
)

Relationships

Location

Global database