From 8a75a20d2635227950af0a6aa8beba52ab582031 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 1 Feb 2017 21:08:13 +0000 Subject: [PATCH] Bugfix: An index was missing --- boot.php | 2 +- include/dbstructure.php | 1 + update.php | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index a58b41f429..7c6d8620f4 100644 --- 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. diff --git a/include/dbstructure.php b/include/dbstructure.php index b17ef8ed8c..f8d084437b 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -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"), diff --git a/update.php b/update.php index 25d6cb9cbf..041de9cfff 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@