Your IP : 172.70.127.67


Current Path : /var/www/element/data/www/wiki.element.ru/maintenance/archives/
Upload File :
Current File : /var/www/element/data/www/wiki.element.ru/maintenance/archives/patch-ipb_expiry.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