mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
8 lines
372 B
SQL
8 lines
372 B
SQL
-- Adds the ipb_expiry field to ipblocks
|
|
|
|
ALTER TABLE /*$wgDBprefix*/ipblocks ADD ipb_expiry varbinary(14) NOT NULL default '';
|
|
|
|
-- All IP blocks have one day expiry
|
|
UPDATE /*$wgDBprefix*/ipblocks SET ipb_expiry = date_format(date_add(ipb_timestamp,INTERVAL 1 DAY),"%Y%m%d%H%i%s") WHERE ipb_user = 0;
|
|
|
|
-- Null string is fine for user blocks, since this indicates infinity
|