]> git.mxchange.org Git - friendica.git/blobdiff - database.sql
bump version 2024.03-dev
[friendica.git] / database.sql
index 39a56e7966bbbdefe121249da87211d25d8c6bff..f114bb5bfd0eda9f5c3486249451d5853b0d0d1b 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
--- Friendica 2023.09-rc (Giant Rhubarb)
--- DB_UPDATE_VERSION 1540
+-- Friendica 2023.12 (Yellow archangel)
+-- DB_UPDATE_VERSION 1542
 -- ------------------------------------------
 
 
@@ -1534,7 +1534,8 @@ CREATE TABLE IF NOT EXISTS `post-user` (
         INDEX `event-id` (`event-id`),
         INDEX `psid` (`psid`),
         INDEX `author-id_uid` (`author-id`,`uid`),
-        INDEX `author-id_received` (`author-id`,`received`),
+        INDEX `author-id_created` (`author-id`,`created`),
+        INDEX `owner-id_created` (`owner-id`,`created`),
         INDEX `parent-uri-id_uid` (`parent-uri-id`,`uid`),
         INDEX `uid_wall_received` (`uid`,`wall`,`received`),
         INDEX `uid_contactid` (`uid`,`contact-id`),
@@ -1595,11 +1596,17 @@ CREATE TABLE IF NOT EXISTS `post-thread-user` (
         INDEX `post-user-id` (`post-user-id`),
         INDEX `commented` (`commented`),
         INDEX `received` (`received`),
+        INDEX `author-id_created` (`author-id`,`created`),
+        INDEX `owner-id_created` (`owner-id`,`created`),
         INDEX `uid_received` (`uid`,`received`),
         INDEX `uid_wall_received` (`uid`,`wall`,`received`),
         INDEX `uid_commented` (`uid`,`commented`),
+        INDEX `uid_created` (`uid`,`created`),
         INDEX `uid_starred` (`uid`,`starred`),
         INDEX `uid_mention` (`uid`,`mention`),
+        INDEX `contact-id_commented` (`contact-id`,`commented`),
+        INDEX `contact-id_received` (`contact-id`,`received`),
+        INDEX `contact-id_created` (`contact-id`,`created`),
        FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
        FOREIGN KEY (`conversation-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
        FOREIGN KEY (`owner-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
@@ -1868,14 +1875,14 @@ CREATE TABLE IF NOT EXISTS `subscription` (
 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Push Subscription for the API';
 
 --
--- TABLE test-full-text-search
+-- TABLE check-full-text-search
 --
-CREATE TABLE IF NOT EXISTS `test-full-text-search` (
-       `pid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Process id of the worker',
+CREATE TABLE IF NOT EXISTS `check-full-text-search` (
+       `pid` int unsigned NOT NULL COMMENT 'The ID of the process',
        `searchtext` mediumtext COMMENT 'Simplified text for the full text search',
         PRIMARY KEY(`pid`),
         FULLTEXT INDEX `searchtext` (`searchtext`)
-) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Test for a full text search match in user defined channels before storing the message in the system';
+) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Check for a full text search match in user defined channels before storing the message in the system';
 
 --
 -- TABLE userd