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

Add index on user_loginname

This commit is contained in:
e107steved
2008-11-02 14:54:44 +00:00
parent cce18385bd
commit 26a8e215fc
2 changed files with 14 additions and 5 deletions

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/sql/core_sql.php,v $
| $Revision: 1.11 $
| $Date: 2008-06-13 20:20:20 $
| $Revision: 1.12 $
| $Date: 2008-11-02 14:54:38 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
@@ -522,6 +522,7 @@ CREATE TABLE user (
user_xup varchar(100) NOT NULL default '',
PRIMARY KEY (user_id),
UNIQUE KEY user_name (user_name),
UNIQUE KEY user_loginname (user_loginname),
KEY join_ban_index (user_join,user_ban)
) TYPE=MyISAM;
# --------------------------------------------------------