mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
9 lines
211 B
SQL
9 lines
211 B
SQL
--
|
|
-- patch-rc-patrol.sql
|
|
-- Adds a row to recentchanges for the patrolling feature
|
|
-- 2004-08-09
|
|
--
|
|
|
|
ALTER TABLE /*$wgDBprefix*/recentchanges
|
|
ADD COLUMN rc_patrolled tinyint(3) unsigned NOT NULL default '0';
|
|
|