aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2016-11-22 14:15:33 -0800
committerzotlabs <mike@macgirvin.com>2016-11-22 14:15:33 -0800
commit6e016c439caa444c4b3aca55e39a5dfa7294c684 (patch)
tree19dd2acf5cb448f26d402bb5ba41b42a75b58354 /install/update.php
parentbc95b2fc77678be44a9ef4cafb440fe475d9f18a (diff)
downloadvolse-hubzilla-6e016c439caa444c4b3aca55e39a5dfa7294c684.tar.gz
volse-hubzilla-6e016c439caa444c4b3aca55e39a5dfa7294c684.tar.bz2
volse-hubzilla-6e016c439caa444c4b3aca55e39a5dfa7294c684.zip
db update required for Zot2
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 7e7104b74..dbf3a08ca 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1184 );
+define( 'UPDATE_VERSION' , 1185 );
/**
*
@@ -2463,3 +2463,12 @@ function update_r1183() {
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
+
+function update_r1184() {
+
+ $r1 = q("alter table site add site_crypto text not null default '' ");
+
+ if($r1)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}