New database version

This commit is contained in:
Michael 2017-08-14 05:49:49 +00:00
parent 1fa82581b6
commit b3e20b1685
3 changed files with 5 additions and 4 deletions

View File

@ -42,7 +42,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_CODENAME', 'Asparagus');
define ( 'FRIENDICA_VERSION', '3.5.3-dev' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1233 );
define ( 'DB_UPDATE_VERSION', 1234 );
/**
* @brief Constant with a HTML line break.

View File

@ -1,6 +1,6 @@
-- ------------------------------------------
-- Friendica 3.5.3-dev (Asparagus)
-- DB_UPDATE_VERSION 1233
-- DB_UPDATE_VERSION 1234
-- ------------------------------------------
@ -1027,7 +1027,8 @@ CREATE TABLE IF NOT EXISTS `thread` (
INDEX `authorid` (`author-id`),
INDEX `uid_created` (`uid`,`created`),
INDEX `uid_commented` (`uid`,`commented`),
INDEX `uid_wall_created` (`uid`,`wall`,`created`)
INDEX `uid_wall_created` (`uid`,`wall`,`created`),
INDEX `private_wall_received` (`private`,`wall`,`received`)
) DEFAULT COLLATE utf8mb4_general_ci;
--

View File

@ -1,6 +1,6 @@
<?php
define('UPDATE_VERSION' , 1233);
define('UPDATE_VERSION' , 1234);
/**
*