wiki.techinc.nl/maintenance/archives/patch-bot.sql
Lee Daniel Crocker d82c14fb4f Initial revision
2003-04-14 23:10:40 +00:00

11 lines
425 B
SQL

-- 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
ALTER TABLE recentchanges
ADD COLUMN rc_bot tinyint(3) unsigned NOT NULL default '0'
AFTER rc_minor;