diff options
author | friendica <info@friendica.com> | 2011-12-03 13:53:49 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-03 13:53:49 -0800 |
commit | acd28bb1ef2b1bc37ffde0bb4dbb5e997d6259a2 (patch) | |
tree | 9c956434f6f9e1630b50284666d7befa60d4a05d /update.php | |
parent | 172fdbcdcfac15a14332967d6d493eac56c088bb (diff) | |
download | volse-hubzilla-acd28bb1ef2b1bc37ffde0bb4dbb5e997d6259a2.tar.gz volse-hubzilla-acd28bb1ef2b1bc37ffde0bb4dbb5e997d6259a2.tar.bz2 volse-hubzilla-acd28bb1ef2b1bc37ffde0bb4dbb5e997d6259a2.zip |
add a bookmark index, needed by network queries
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 0a3a1e7f1..6e7b5f2c1 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1107 ); +define( 'UPDATE_VERSION' , 1108 ); /** * @@ -918,4 +918,9 @@ function update_1106() { } +function update_1107() { + q("ALTER TABLE `item` ADD INDEX ( `bookmark` ) "); + +} + |