Newer
Older
Import / web / www.xiaofrog.com / wiki / maintenance / archives / patch-rc_ip.sql
@John Ryland John Ryland on 22 Dec 2020 190 bytes import NUC files
-- 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);