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