* Updates
[mediawiki.git] / maintenance / archives / patch-rc_ip.sql
bloba68a22cb25f1902e5323d0a2f1a85ce4eb80818e
1 -- Adding the rc_ip field for logging of IP addresses in recentchanges
3 ALTER TABLE /*$wgDBprefix*/recentchanges 
4   ADD rc_ip char(15) NOT NULL default '',
5   ADD INDEX rc_ip (rc_ip);