aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2013-01-03 09:17:11 +0000
committerThomas Willingham <founder@kakste.com>2013-01-03 09:17:11 +0000
commitb1a02cf450c92e88f3375d15b153d0046bc5c724 (patch)
treea3c4db0f0dd1f9b0bde31ec1f78117d9acb19907 /install/update.php
parent577236c372b4eaa1e93d60d7bedaecea8ef8c97f (diff)
parent1e7a5560f5a5887641d120e77f0f9993bf3b58b9 (diff)
downloadvolse-hubzilla-b1a02cf450c92e88f3375d15b153d0046bc5c724.tar.gz
volse-hubzilla-b1a02cf450c92e88f3375d15b153d0046bc5c724.tar.bz2
volse-hubzilla-b1a02cf450c92e88f3375d15b153d0046bc5c724.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php
index 549ae63ed..cff3115a2 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1014 );
+define( 'UPDATE_VERSION' , 1015 );
/**
*
@@ -211,3 +211,11 @@ function update_r1013() {
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
+
+function update_r1014() {
+ $r = q("ALTER TABLE `verify` CHANGE `id` `id` INT( 10 ) UNSIGNED NOT NULL AUTO_INCREMENT");
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}
+