1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-18 05:09:05 +01:00

Merge pull request #2905 from lonalore/indexing

Possible fix for issue #2860.
This commit is contained in:
Cameron 2017-12-09 12:29:00 -08:00 committed by GitHub
commit dfc71e068e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
# --------------------------------------------------------