Merge "RCFilters: Minimize vertical spacing; get rid of legend and <br>s"
[lhc/web/wiklou.git] / maintenance / archives / patch-rev_deleted.sql
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 --
9
10 ALTER TABLE /*$wgDBprefix*/revision
11 ADD rev_deleted tinyint unsigned NOT NULL default '0';