aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-18 16:29:57 -0800
committerfriendica <info@friendica.com>2012-12-18 16:29:57 -0800
commite9c87a69ce1a78e0790241467961bfab465b3358 (patch)
tree3961c9f2936d8bcba1b24fe4e4d443d6a8361ff8 /install/update.php
parenta12264193ffe9daa04155aff78a1feaff82b7670 (diff)
downloadvolse-hubzilla-e9c87a69ce1a78e0790241467961bfab465b3358.tar.gz
volse-hubzilla-e9c87a69ce1a78e0790241467961bfab465b3358.tar.bz2
volse-hubzilla-e9c87a69ce1a78e0790241467961bfab465b3358.zip
cleanup more obsolete stuff
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/install/update.php b/install/update.php
index e3394b5bc..ad21d9b45 100644
--- a/install/update.php
+++ b/install/update.php
@@ -67,6 +67,9 @@ function update_r1002() {
$r = q("ALTER TABLE `event` CHANGE `account` `aid` INT( 10 ) UNSIGNED NOT NULL DEFAULT '0'");
$r2 = q("alter table `event` drop index `account`, add index (`aid`)");
+ q("drop table contact");
+ q("drop table deliverq");
+
if($r && $r2)
return UPDATE_SUCCESS;
return UPDATE_FAILED;