summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-rc_ip.sql
blob: a68a22cb25f1902e5323d0a2f1a85ce4eb80818e (plain)
1
2
3
4
5
6
7
-- Adding the rc_ip field for logging of IP addresses in recentchanges

ALTER TABLE /*$wgDBprefix*/recentchanges 
  ADD rc_ip char(15) NOT NULL default '',
  ADD INDEX rc_ip (rc_ip);