Starter for a re-jig of hit counting (in a per-day table).
[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