Merge "Re add wpScrolltop id in EditPage"
[lhc/web/wiklou.git] / maintenance / archives / patch-bot.sql
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.
4
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
8
9 ALTER TABLE /*$wgDBprefix*/recentchanges
10 ADD COLUMN rc_bot tinyint unsigned NOT NULL default '0'
11 AFTER rc_minor;