summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-rc_ip.sql
blob: 4d93300f038469f47249319710dfaf40fdbaeb4c (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);