Merge "Localisation updates from http://translatewiki.net."
[mediawiki.git] / maintenance / archives / patch-rev_deleted.sql
blobba47f78989624ccfead9ce6562777334a8104ef7
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 unsigned NOT NULL default '0';