aboutsummaryrefslogtreecommitdiffstats
path: root/update.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-09-01 18:02:08 -0700
committerFriendika <info@friendika.com>2011-09-01 18:02:08 -0700
commita33edb00424882258a90b138c634a466c92faf61 (patch)
tree6dc44fa99d818c5a7d5f641f53cd3393a2f61a2c /update.php
parentef1b99aa44031662187be878485be14edf35b42b (diff)
downloadvolse-hubzilla-a33edb00424882258a90b138c634a466c92faf61.tar.gz
volse-hubzilla-a33edb00424882258a90b138c634a466c92faf61.tar.bz2
volse-hubzilla-a33edb00424882258a90b138c634a466c92faf61.zip
infrastructure for personalised @ tags (no UI/settings form yet), allow own comments through statusnet connector
Diffstat (limited to 'update.php')
-rw-r--r--update.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/update.php b/update.php
index 14bc48ab7..80761cce4 100644
--- a/update.php
+++ b/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1084 );
+define( 'UPDATE_VERSION' , 1085 );
/**
*
@@ -706,4 +706,8 @@ function update_1083() {
`contact` INT NOT NULL
) ENGINE = MYISAM ;");
-} \ No newline at end of file
+}
+
+function update_1084() {
+ q("ALTER TABLE `contact` ADD `attag` CHAR( 255 ) NOT NULL AFTER `nick` ");
+}