mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-07 15:54:26 +02:00
Conversation entries will now be stored asynchronous if possible
This commit is contained in:
parent
548b7f43a5
commit
d9aee0b3ea
8 changed files with 120 additions and 56 deletions
10
database.sql
10
database.sql
|
@ -1,6 +1,6 @@
|
|||
-- ------------------------------------------
|
||||
-- Friendica 2022.09-dev (Giant Rhubarb)
|
||||
-- DB_UPDATE_VERSION 1478
|
||||
-- DB_UPDATE_VERSION 1479
|
||||
-- ------------------------------------------
|
||||
|
||||
|
||||
|
@ -1726,13 +1726,13 @@ CREATE TABLE IF NOT EXISTS `arrived-activity` (
|
|||
) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Id of arrived activities';
|
||||
|
||||
--
|
||||
-- TABLE processed-activity
|
||||
-- TABLE fetched-activity
|
||||
--
|
||||
CREATE TABLE IF NOT EXISTS `processed-activity` (
|
||||
`object-id` varbinary(255) NOT NULL COMMENT 'object id of the incoming activity',
|
||||
CREATE TABLE IF NOT EXISTS `fetched-activity` (
|
||||
`object-id` varbinary(255) NOT NULL COMMENT 'object id of fetched activity',
|
||||
`received` datetime COMMENT 'Receiving date',
|
||||
PRIMARY KEY(`object-id`)
|
||||
) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Id of processed activities';
|
||||
) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Id of fetched activities';
|
||||
|
||||
--
|
||||
-- TABLE worker-ipc
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue