summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-rc_ip.sql
blob: 6b0b0534382536486f5b4ca8065d46efb6b18604 (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 varbinary(40) NOT NULL default '',
  ADD INDEX rc_ip (rc_ip);