X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=database.sql;h=86f8e82eb5397582884753afec3bbd6ba5bae69b;hb=b3d7dfb9a5671f24cfa4b42c9c86670b5912d500;hp=5c999da2314bb23a6e3a4bb0e7b8fbdce5c6af96;hpb=094b219581d4b9e3f8770bf551387f90f9f29a04;p=friendica.git diff --git a/database.sql b/database.sql index 5c999da231..86f8e82eb5 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 2023.09-rc (Giant Rhubarb) --- DB_UPDATE_VERSION 1539 +-- DB_UPDATE_VERSION 1540 -- ------------------------------------------ @@ -1867,6 +1867,16 @@ CREATE TABLE IF NOT EXISTS `subscription` ( FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Push Subscription for the API'; +-- +-- TABLE check-full-text-search +-- +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='Check for a full text search match in user defined channels before storing the message in the system'; + -- -- TABLE userd --