1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Issue #5490 Incorrect ALTER query created on index. Indexes added to admin_log for speed.

This commit is contained in:
camer0n
2025-05-06 18:08:52 -07:00
parent 6b9be7d412
commit 218d0a5afc
3 changed files with 25 additions and 1 deletions

View File

@@ -40,6 +40,9 @@ CREATE TABLE admin_log (
dblog_remarks text NOT NULL,
PRIMARY KEY (dblog_id),
KEY dblog_datestamp (dblog_datestamp)
KEY dblog_eventcode (dblog_eventcode),
KEY dblog_eventcode_title (dblog_eventcode,dblog_title),
KEY dblog_user_id (dblog_user_id)
) ENGINE=InnoDB;
# --------------------------------------------------------