]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #1426 from annando/1503-term-search
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 12 Mar 2015 06:15:05 +0000 (07:15 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 12 Mar 2015 06:15:05 +0000 (07:15 +0100)
The index for the term search is now massively improved

boot.php
include/dbstructure.php
update.php

index 05284dce4335314e21946b87a432ff2e85b04046..5a5437175ef26a9cdd26d541b41be75b23a6096a 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -18,7 +18,7 @@ define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_CODENAME',     'Ginger');
 define ( 'FRIENDICA_VERSION',      '3.3.3' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1181      );
+define ( 'DB_UPDATE_VERSION',      1182      );
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
 
index c078e405102332ac32005e5653e45ead93190597..0e78694a77465294e30b4faa4ae62b2cd0d17cee 100644 (file)
@@ -1203,7 +1203,7 @@ function db_definition() {
                                        "oid_otype_type_term" => array("oid","otype","type","term"),
                                        "uid_term_tid" => array("uid","term","tid"),
                                        "type_term" => array("type","term"),
-                                       "uid_otype_type_term_created" => array("uid","otype","type","term","created"),
+                                       "uid_otype_type_term_global_created" => array("uid","otype","type","term","global","created"),
                                        "otype_type_term_tid" => array("otype","type","term","tid"),
                                        "guid" => array("guid"),
                                        )
index 93c3c4bef31296f78154596d4bbedea86b5c18a6..5b0b4cd25117de503a10529e88c9a0714deaa460 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1181 );
+define( 'UPDATE_VERSION' , 1182 );
 
 /**
  *