aboutsummaryrefslogtreecommitdiffstats
path: root/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-15 16:38:26 -0700
committerfriendica <info@friendica.com>2012-03-15 16:38:26 -0700
commit7684f63ecdfce560f24475630144f6058df15ca9 (patch)
tree98c24daa58b9ed3df087e14e23e2f49e24acea55 /update.php
parentf96aff5518d2d5fb726d381892893a68d8c36450 (diff)
downloadvolse-hubzilla-7684f63ecdfce560f24475630144f6058df15ca9.tar.gz
volse-hubzilla-7684f63ecdfce560f24475630144f6058df15ca9.tar.bz2
volse-hubzilla-7684f63ecdfce560f24475630144f6058df15ca9.zip
track whether contact is a community page or not
Diffstat (limited to 'update.php')
-rwxr-xr-xupdate.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php
index c29394b48..6a685a6ff 100755
--- a/update.php
+++ b/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1131 );
+define( 'UPDATE_VERSION' , 1132 );
/**
*
@@ -1122,3 +1122,8 @@ function update_1130() {
q("ALTER TABLE `item` ADD `file` MEDIUMTEXT NOT NULL AFTER `inform`, ADD FULLTEXT KEY (`file`) ");
}
+function update_1131() {
+ q("ALTER TABLE `contact` ADD `forum` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `writable` , ADD INDEX ( `forum` ) ");
+}
+
+