2003-04-14 23:10:40 +00:00
|
|
|
-- Add field to recentchanges for easy filtering of bot entries
|
|
|
|
|
-- edits by a user with 'bot' in user.user_rights should be
|
|
|
|
|
-- marked 1 in rc_bot.
|
|
|
|
|
|
|
|
|
|
-- Change made 2002-12-15 by Brion VIBBER <brion@pobox.com>
|
|
|
|
|
-- this affects code in Article.php, User.php SpecialRecentchanges.php
|
|
|
|
|
-- column also added to buildTables.inc
|
|
|
|
|
|
2005-01-14 13:33:17 +00:00
|
|
|
ALTER TABLE /*$wgDBprefix*/recentchanges
|
2007-06-22 20:09:59 +00:00
|
|
|
ADD COLUMN rc_bot tinyint unsigned NOT NULL default '0'
|
2003-04-14 23:10:40 +00:00
|
|
|
AFTER rc_minor;
|