]> git.mxchange.org Git - friendica.git/commitdiff
Bugfix: An index was missing
authorMichael <heluecht@pirati.ca>
Wed, 1 Feb 2017 21:08:13 +0000 (21:08 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 1 Feb 2017 21:08:13 +0000 (21:08 +0000)
boot.php
include/dbstructure.php
update.php

index a58b41f429667295f215fbcc79a70c41554a59f5..7c6d8620f4b498e4255caa474f3aa110a92122b3 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -40,7 +40,7 @@ define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_CODENAME',     'Asparagus');
 define ( 'FRIENDICA_VERSION',      '3.5.1-dev' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1213      );
+define ( 'DB_UPDATE_VERSION',      1214      );
 
 /**
  * @brief Constant with a HTML line break.
index b17ef8ed8cafdc1460be1757bb11fb4810c34ea0..f8d084437b16ed18342855b693a3dcc15573a585 100644 (file)
@@ -1040,6 +1040,7 @@ function db_definition($charset) {
                                        "parent-uri" => array("parent-uri"),
                                        "extid" => array("extid"),
                                        "uid_id" => array("uid","id"),
+                                       "uid_contactid_id" => array("uid","contact-id","id"),
                                        "uid_created" => array("uid","created"),
                                        "uid_unseen_contactid" => array("uid","unseen","contact-id"),
                                        "uid_network_received" => array("uid","network","received"),
index 25d6cb9cbffb11212729c291cf433d82b0ffb62d..041de9cfff4b2acc1d85f822a94f25bac939bd95 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define('UPDATE_VERSION' , 1213);
+define('UPDATE_VERSION' , 1214);
 
 /**
  *