mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
7 lines
189 B
SQL
7 lines
189 B
SQL
-- 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);
|
|
|
|
|