Skip to content
Snippets Groups Projects
Commit e58a8607 authored by Ingo Fabbri's avatar Ingo Fabbri Committed by Christian Kuhn
Browse files

[TASK] Add indexes for table sys_log

This commit adds two new keys to table sys_log:

- channel
- level

Resolves: #101707
Releases: main, 12.4
Change-Id: Iddc61daf268573c658a068a655b97c482e438c31
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/80660


Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarcore-ci <typo3@b13.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent cddee3b7
Branches
Tags
No related merge requests found
......@@ -379,7 +379,9 @@ CREATE TABLE sys_log (
KEY user_auth (type,action,tstamp),
KEY request (request_id),
KEY combined_1 (tstamp, type, userid),
KEY errorcount (tstamp,error)
KEY errorcount (tstamp,error),
KEY channel (channel),
KEY level (level)
) ENGINE=InnoDB;
#
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment