diff options
author | Friendika <info@friendika.com> | 2011-07-05 19:55:09 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-07-05 19:55:09 -0700 |
commit | d7154a4606d8c6f86b2eacd35c16893283b484c4 (patch) | |
tree | 8d01bc0ed5bf767a05ff5c447af1f58a2a3a4b90 /update.php | |
parent | 76e56fd44e4a8b43bdf42fae64484e5bb69dd450 (diff) | |
download | volse-hubzilla-d7154a4606d8c6f86b2eacd35c16893283b484c4.tar.gz volse-hubzilla-d7154a4606d8c6f86b2eacd35c16893283b484c4.tar.bz2 volse-hubzilla-d7154a4606d8c6f86b2eacd35c16893283b484c4.zip |
ability to link contacts that are "really me, but on another system/network".
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index 08f1e6854..66908b8d3 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1073 ); +define( 'UPDATE_VERSION' , 1074 ); /** * @@ -585,3 +585,8 @@ function update_1072() { q("ALTER TABLE `item` ADD `starred` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `visible` "); q("ALTER TABLE `item` ADD INDEX ( `starred` ) "); } + +function update_1073() { + q("ALTER TABLE `contact` ADD `remote_self` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `self` "); +} + |