Update the database schema so a block can be switched between a sitewide and partial block. Also add the restrictions table for specifiying the partial blocks. Bug: T197144 Change-Id: I4a725312c4b980a1b14e5ca826069fa2278a5913
3 lines
114 B
SQL
3 lines
114 B
SQL
-- Adding ipb_sitewide for blocks
|
|
ALTER TABLE /*$wgDBprefix*/ipblocks
|
|
ADD ipb_sitewide bool NOT NULL default 1;
|