From: Jens Frank Date: Thu, 31 Mar 2005 20:40:22 +0000 (+0000) Subject: Create rev_deleted column initially. It is used during install X-Git-Tag: 1.5.0alpha1~436 X-Git-Url: http://git.cyclocoop.org/%22.%20generer_url_ecrire%28%22sites_tous%22%2C%22%22%29.%20%22?a=commitdiff_plain;h=1d7bfa9aed671c2fac891c3e54776ab7b437eae6;p=lhc%2Fweb%2Fwiklou.git Create rev_deleted column initially. It is used during install before the patch is installed. --- diff --git a/maintenance/archives/patch-restructure.sql b/maintenance/archives/patch-restructure.sql index 5cdd9addef..c45e79d3bd 100644 --- a/maintenance/archives/patch-restructure.sql +++ b/maintenance/archives/patch-restructure.sql @@ -34,6 +34,8 @@ CREATE TABLE /*$wgDBprefix*/revision ( rev_user_text varchar(255) binary NOT NULL default '', rev_timestamp char(14) binary NOT NULL default '', rev_minor_edit tinyint(1) unsigned NOT NULL default '0', + rev_deleted tinyint(1) unsigned NOT NULL default '0', + PRIMARY KEY rev_page_id (rev_page, rev_id), UNIQUE INDEX rev_id (rev_id),