aboutsummaryrefslogtreecommitdiffstats
path: root/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-05-17 22:44:52 -0700
committerfriendica <info@friendica.com>2012-05-17 22:44:52 -0700
commit7b0ded3f1478553e1fe93c95c272b99d78f0132b (patch)
tree2afc3fccae7d3f698ad89dc7c77386ac93890080 /update.php
parent7cfa7a7671f0bf8316bc63912452e156fc48129e (diff)
downloadvolse-hubzilla-7b0ded3f1478553e1fe93c95c272b99d78f0132b.tar.gz
volse-hubzilla-7b0ded3f1478553e1fe93c95c272b99d78f0132b.tar.bz2
volse-hubzilla-7b0ded3f1478553e1fe93c95c272b99d78f0132b.zip
more private forums, default privacy group for new contacts
Diffstat (limited to 'update.php')
-rw-r--r--update.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/update.php b/update.php
index e363aa942..f25d16f9d 100644
--- a/update.php
+++ b/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1143 );
+define( 'UPDATE_VERSION' , 1144 );
/**
*
@@ -1246,5 +1246,12 @@ function update_1142() {
return UPDATE_SUCCESS ;
}
+function update_1143() {
+ $r = q("alter table user add def_gid int(11) not null default '0' after service_class");
+ if(! $r)
+ return UPDATE_FAILED ;
+ return UPDATE_SUCCESS ;
+}
+