summaryrefslogtreecommitdiff
path: root/extensions/CheckUser/cu_log.sql
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2010-09-16 21:49:19 +0200
committerPierre Schmitz <pierre@archlinux.de>2010-09-16 21:49:19 +0200
commit91da036ca57d692fba4faad573aa4bca1435eda7 (patch)
tree97d4e9b74fc15dd9ff6cac4e023db04843375dbc /extensions/CheckUser/cu_log.sql
parentbda2edfb2799e73eaab83b775eda8afbe8bcb15d (diff)
Add CheckUser extension
* revision 73143 * url: http://www.mediawiki.org/wiki/Extension:CheckUser
Diffstat (limited to 'extensions/CheckUser/cu_log.sql')
-rw-r--r--extensions/CheckUser/cu_log.sql40
1 files changed, 40 insertions, 0 deletions
diff --git a/extensions/CheckUser/cu_log.sql b/extensions/CheckUser/cu_log.sql
new file mode 100644
index 00000000..1032da2d
--- /dev/null
+++ b/extensions/CheckUser/cu_log.sql
@@ -0,0 +1,40 @@
+-- CheckUser log table
+-- vim: autoindent syn=mysql sts=2 sw=2
+
+CREATE TABLE /*$wgDBprefix*/cu_log (
+ -- Unique identifier
+ cul_id int unsigned not null auto_increment,
+
+ -- Timestamp of CheckUser action
+ cul_timestamp binary(14) not null,
+
+ -- User who performed the action
+ cul_user int unsigned not null,
+ cul_user_text varchar(255) binary not null,
+
+ -- Reason given
+ cul_reason varchar(255) binary not null,
+
+ -- String indicating the type of query, may be "userips", "ipedits", "ipusers", "ipedits-xff", "ipusers-xff"
+ cul_type varbinary(30) not null,
+
+ -- Integer target, interpretation depends on cul_type
+ -- For username targets, this is the user_id
+ cul_target_id int unsigned not null default 0,
+
+ -- Text target, interpretation depends on cul_type
+ cul_target_text blob not null default '',
+
+ -- If the target was an IP address, this contains the hexadecimal form of the IP
+ cul_target_hex varbinary(255) not null default '',
+ -- If the target was an IP range, these fields contain the start and end, in hex form
+ cul_range_start varbinary(255) not null default '',
+ cul_range_end varbinary(255) not null default '',
+
+ PRIMARY KEY (cul_id),
+ INDEX (cul_timestamp),
+ INDEX cul_user (cul_user, cul_timestamp),
+ INDEX cul_type_target (cul_type,cul_target_id, cul_timestamp),
+ INDEX cul_target_hex (cul_target_hex, cul_timestamp),
+ INDEX cul_range_start (cul_range_start, cul_timestamp)
+) /*$wgDBTableOptions*/;