From 0ab0b1d65f494dbef7f2152b789c721711000001 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Tue, 8 Jan 2008 07:46:41 +0000 Subject: #164532 follow up by pwolanin, David Strauss, catch and myself, testing also by hswong3i: some indexes added before Drupal 6 RC1 were too unique, and our code did not back them, so we should not add those indexes --- modules/user/user.install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/user') diff --git a/modules/user/user.install b/modules/user/user.install index 8bdcfc963..6df206e02 100644 --- a/modules/user/user.install +++ b/modules/user/user.install @@ -252,11 +252,11 @@ function user_schema() { ), 'indexes' => array( 'access' => array('access'), - 'created' => array('created') + 'created' => array('created'), + 'mail' => array('mail'), ), 'unique keys' => array( 'name' => array('name'), - 'mail' => array('mail'), ), 'primary key' => array('uid'), ); -- cgit v1.2.3