Merge pull request #3144 from annando/bugfix-index
Bugfix: An index was missing
This commit is contained in:
commit
2f00683b77
2
boot.php
2
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.
|
||||
|
|
|
@ -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"),
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
define('UPDATE_VERSION' , 1213);
|
||||
define('UPDATE_VERSION' , 1214);
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue