mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
New index that is needed for the expiry
This commit is contained in:
parent
7f78540454
commit
0c51159111
2 changed files with 3 additions and 1 deletions
|
@ -540,7 +540,8 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
INDEX `deleted_changed` (`deleted`,`changed`),
|
||||
INDEX `uid_wall_changed` (`uid`,`wall`,`changed`),
|
||||
INDEX `uid_eventid` (`uid`,`event-id`),
|
||||
INDEX `icid` (`icid`)
|
||||
INDEX `icid` (`icid`),
|
||||
INDEX `iaid` (`iaid`)
|
||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Structure for all posts';
|
||||
|
||||
--
|
||||
|
|
|
@ -1247,6 +1247,7 @@ class DBStructure
|
|||
"uid_wall_changed" => ["uid","wall","changed"],
|
||||
"uid_eventid" => ["uid","event-id"],
|
||||
"icid" => ["icid"],
|
||||
"iaid" => ["iaid"],
|
||||
]
|
||||
];
|
||||
$database["item-activity"] = [
|
||||
|
|
Loading…
Reference in a new issue