diff options
author | Friendika <info@friendika.com> | 2011-06-26 19:30:57 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-26 19:30:57 -0700 |
commit | 3fe1e197254f62e5377c28a24e4d5a75014e931b (patch) | |
tree | a920b222eedb539ae114f998089af3b1ea07ead5 /update.php | |
parent | f7964efa52f7efa8159403568a59e320209cbffa (diff) | |
download | volse-hubzilla-3fe1e197254f62e5377c28a24e4d5a75014e931b.tar.gz volse-hubzilla-3fe1e197254f62e5377c28a24e4d5a75014e931b.tar.bz2 volse-hubzilla-3fe1e197254f62e5377c28a24e4d5a75014e931b.zip |
pass notify endpoint with friend suggestions
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/update.php b/update.php index 2e22b9d1c..ce8c694ca 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1069 ); +define( 'UPDATE_VERSION' , 1070 ); /** * @@ -561,4 +561,7 @@ function update_1068() { } - +function update_1069() { + q("ALTER TABLE `fsuggest` ADD `request` CHAR( 255 ) NOT NULL AFTER `url` "); + q("ALTER TABLE `fcontact` ADD `request` CHAR( 255 ) NOT NULL AFTER `photo` "); +} |