Localisation updates for core messages from translatewiki.net (2009-07-22 23:12 UTC)
[lhc/web/wiklou.git] / maintenance / archives / patch-rc_ip.sql
1 -- Adding the rc_ip field for logging of IP addresses in recentchanges
2
3 ALTER TABLE /*$wgDBprefix*/recentchanges
4 ADD rc_ip varbinary(40) NOT NULL default '',
5 ADD INDEX rc_ip (rc_ip);
6
7