1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-29 10:38:08 +01:00

Possible fix for issue #2860.

This commit is contained in:
Lóna Lore 2017-12-09 21:10:33 +01:00
parent 8789ce6f1c
commit 8ff0f36077

View File

@ -365,7 +365,7 @@ CREATE TABLE online (
online_agent varchar(255) NOT NULL default '',
online_language varchar(2) NOT NULL default '',
KEY online_ip (online_ip),
KEY online_user_id (online_user_id),
KEY online_ip_user_id (online_ip, online_user_id),
KEY online_timestamp (online_timestamp)
) ENGINE=InnoDB;
# --------------------------------------------------------