Difference between revisions of "Database Table: ratelog"
From Dreamwidth Notes
(Created page with 'ratelog =Definition= <source lang="sql"> CREATE TABLE ratelog ( userid INT UNSIGNED NOT NULL, rlid TINYINT UNSIGNED NOT NULL, evttime INT UNSI...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE ratelog | CREATE TABLE ratelog | ||
Line 13: | Line 13: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = 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 )