mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
6 lines
180 B
SQL
6 lines
180 B
SQL
-- For auto-expiring blocks --
|
|
|
|
ALTER TABLE /*$wgDBprefix*/ipblocks
|
|
ADD ipb_auto tinyint NOT NULL default '0',
|
|
ADD ipb_id int NOT NULL auto_increment,
|
|
ADD PRIMARY KEY (ipb_id);
|