blob: 3af0c1d726925c505f6b716e97d3b0927eab3cf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--
-- 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(1) unsigned NOT NULL default '0';
|