* (bug 9993) Force $wgShowExceptionDetails on during installation
[mediawiki.git] / maintenance / postgres / archives / patch-archive_delete.sql
blob4a864c3b8138daf1a28144f7414757808ca8cec5
1 CREATE RULE archive_delete AS ON DELETE TO archive
2 DO INSTEAD DELETE FROM archive2 WHERE
3   archive2.ar_title = OLD.ar_title AND
4   archive2.ar_namespace = OLD.ar_namespace AND
5   archive2.ar_rev_id = OLD.ar_rev_id;