* missing quotes in gnunote
[mediawiki.git] / maintenance / archives / patch-bot.sql
blobc171afa15de8a8e17b1f0474444510e4e3ac884e
1 -- Add field to recentchanges for easy filtering of bot entries
2 -- edits by a user with 'bot' in user.user_rights should be
3 -- marked 1 in rc_bot.
5 -- Change made 2002-12-15 by Brion VIBBER <brion@pobox.com>
6 -- this affects code in Article.php, User.php SpecialRecentchanges.php
7 -- column also added to buildTables.inc
9 ALTER TABLE recentchanges
10   ADD COLUMN rc_bot tinyint(3) unsigned NOT NULL default '0'
11   AFTER rc_minor;