fix lag detection - do not assume that second 'system user' line gives that value...
[mediawiki.git] / maintenance / archives / patch-rev_deleted.sql
blob3af0c1d726925c505f6b716e97d3b0927eab3cf2
1 --
2 -- Add rev_deleted flag to revision table.
3 -- Deleted revisions can thus continue to be listed in history
4 -- and user contributions, and their text storage doesn't have
5 -- to be disturbed.
6 --
7 -- 2005-03-31
8 --
10 ALTER TABLE /*$wgDBprefix*/revision
11   ADD rev_deleted tinyint(1) unsigned NOT NULL default '0';