Difference between revisions of "Database Table: rateabuse"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Converting database table to use semantic mediawiki form.)
Line 1: Line 1:
 +
{{#set:name=rateabuse|clustered=false}}
 
= Definition =
 
= Definition =
  
Line 15: Line 16:
 
</source>
 
</source>
  
= Relationships =
+
{{Database Table Footer}}
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category: Database Tables|rateabuse]]
+

Revision as of 13:18, 2 October 2009

Definition

CREATE TABLE rateabuse
(
 rlid     TINYINT UNSIGNED NOT NULL,
 userid   INT UNSIGNED NOT NULL,
 evttime  INT UNSIGNED NOT NULL,
 ip       INT UNSIGNED NOT NULL,
 enum     ENUM('soft','hard') NOT NULL,
 INDEX (rlid, evttime),
 INDEX (userid),
 INDEX (ip)
 )

Relationships