aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/archives/patch-archive-text_id.sql
Commit message (Collapse)AuthorAgeFilesLines
* Updated patch files to match the recent update to tables.sql. Removed some ↵Tim Starling2007-06-221-1/+1
| | | | | | | defunct patch files. Tested with a 1.3 -> 1.11 upgrade. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/23246
* * (bug 2018) Fix deletion for new schema, make work on MySQL 3 againBrion Vibber2005-05-011-0/+14
The archive table now has an ar_text_id field which points at the text record containing the deleted revision's text. Older archive records containing self-contained text are still supported and will be restored by adding a new revision. For now, revision and page records are still removed on deletion, but text records are left intact. This will keep block compression and immutable alternate storage backends working relatively cleanly. A rev_deleted flag field is reserved in revision for further future changes but that won't happen in the 1.5 timeframe. There is no longer a delete-on-join which was present in earlier 1.5 revisions, so deletion should work on MySQL 3.x again. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/8772