aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2012-12-28 02:07:20 +0000
committerThomas Willingham <founder@kakste.com>2012-12-28 02:07:20 +0000
commit2fb831637c32419b93ebedb13d3900eca2b530f7 (patch)
tree62cc60737388a474cf5bf065f65738e11dcf3f5a /install/update.php
parent13b4ca2d4fd9febd76f54058de53b25a8e725720 (diff)
parent55e77a57d0ea20844b481ff9b194bdf424857c5e (diff)
downloadvolse-hubzilla-2fb831637c32419b93ebedb13d3900eca2b530f7.tar.gz
volse-hubzilla-2fb831637c32419b93ebedb13d3900eca2b530f7.tar.bz2
volse-hubzilla-2fb831637c32419b93ebedb13d3900eca2b530f7.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php
index 144a972f9..4c5e4d3a6 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1009 );
+define( 'UPDATE_VERSION' , 1010 );
/**
*
@@ -160,3 +160,12 @@ function update_r1008() {
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
+
+function update_r1009() {
+ $r = q("ALTER TABLE `xprof` ADD `xprof_keywords` TEXT NOT NULL");
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}
+
+