mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-27 15:30:42 +00:00
Move abuse filter log hiding, add patrolling support into a new file patch-hide_patrol.sql
This commit is contained in:
parent
994b3a4ce1
commit
f87df5f8d6
|
@ -4,4 +4,3 @@ ALTER TABLE /*_*/abuse_filter ADD COLUMN af_global tinyint(1) NOT NULL DEFAULT 0
|
|||
|
||||
ALTER TABLE /*_*/abuse_filter_log ADD COLUMN afl_wiki varchar(64) binary NULL;
|
||||
ALTER TABLE /*_*/abuse_filter_log CHANGE COLUMN afl_filter afl_filter varchar(64) binary NOT NULL;
|
||||
ALTER TABLE /*_*/abuse_filter_log ADD COLUMN afl_deleted tinyint(1) NULL;
|
||||
|
|
5
db_patches/patch-hide_patrol.sql
Normal file
5
db_patches/patch-hide_patrol.sql
Normal file
|
@ -0,0 +1,5 @@
|
|||
-- Add hiding and patrolling ability to abuse filter log
|
||||
-- Andrew Garrett, June 2009
|
||||
|
||||
ALTER TABLE /*_*/abuse_filter_log ADD COLUMN afl_deleted tinyint(1) NULL;
|
||||
ALTER TABLE /*_*/abuse_filter_log ADD COLUMN afl_patrolled_by int unsigned NULL;
|
Loading…
Reference in a new issue