mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
11 lines
306 B
SQL
11 lines
306 B
SQL
--
|
|
-- Add rev_deleted flag to revision table.
|
|
-- Deleted revisions can thus continue to be listed in history
|
|
-- and user contributions, and their text storage doesn't have
|
|
-- to be disturbed.
|
|
--
|
|
-- 2005-03-31
|
|
--
|
|
|
|
ALTER TABLE /*$wgDBprefix*/revision
|
|
ADD rev_deleted tinyint unsigned NOT NULL default '0';
|