aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-18 16:17:08 -0800
committerfriendica <info@friendica.com>2012-12-18 16:17:08 -0800
commita12264193ffe9daa04155aff78a1feaff82b7670 (patch)
tree2a852d9fe1c91fa2fce5e6b03e021190249e1765 /install/update.php
parente9b5b0f0b424930b87708080c4e6ce671016177b (diff)
downloadvolse-hubzilla-a12264193ffe9daa04155aff78a1feaff82b7670.tar.gz
volse-hubzilla-a12264193ffe9daa04155aff78a1feaff82b7670.tar.bz2
volse-hubzilla-a12264193ffe9daa04155aff78a1feaff82b7670.zip
modularise the notification popups
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php
index f767c2f22..e3394b5bc 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1002 );
+define( 'UPDATE_VERSION' , 1003 );
/**
*
@@ -61,3 +61,13 @@ function update_r1001() {
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
+
+
+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`)");
+
+ if($r && $r2)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}