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

Possible fix for Issue #2860 - Add more indexes.

This commit is contained in:
Lóna Lore
2017-11-14 21:14:43 +01:00
parent d63e4063e2
commit 865c3f7c98

4
e107_core/sql/core_sql.php Normal file → Executable file
View File

@@ -364,7 +364,9 @@ CREATE TABLE online (
online_active int(10) unsigned NOT NULL default '0', online_active int(10) unsigned NOT NULL default '0',
online_agent varchar(255) NOT NULL default '', online_agent varchar(255) NOT NULL default '',
online_language varchar(2) NOT NULL default '', online_language varchar(2) NOT NULL default '',
KEY online_ip (online_ip) KEY online_ip (online_ip),
KEY online_user_id (online_user_id),
KEY online_timestamp (online_timestamp)
) ENGINE=InnoDB; ) ENGINE=InnoDB;
# -------------------------------------------------------- # --------------------------------------------------------