Difference between revisions of "Database Table: ratelog"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'ratelog =Definition= <source lang="sql"> CREATE TABLE ratelog ( userid INT UNSIGNED NOT NULL, rlid TINYINT UNSIGNED NOT NULL, evttime INT UNSI...')
 
Line 1: Line 1:
[[Category: Database Table|ratelog]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE ratelog
 
CREATE TABLE ratelog
Line 13: Line 13:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Clustered database]]
 
[[Clustered database]]
 +
 +
[[Category: Database Tables|ratelog]]

Revision as of 14:31, 1 April 2009

Definition

CREATE TABLE ratelog
(
 userid   INT UNSIGNED NOT NULL,
 rlid  TINYINT UNSIGNED NOT NULL,
 evttime  INT UNSIGNED NOT NULL,
 ip       INT UNSIGNED NOT NULL,
 INDEX (userid, rlid, evttime),
 quantity SMALLINT UNSIGNED NOT NULL
 )

Relationships

Location

Clustered database