diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-08 07:46:41 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-08 07:46:41 +0000 |
commit | 0ab0b1d65f494dbef7f2152b789c721711000001 (patch) | |
tree | 81b5fe352595ea45d9a979d8e5bf9307193e85ed /modules/user/user.install | |
parent | 68a730c7955dc7b7f1372a8bf574b7a167102a80 (diff) | |
download | brdo-0ab0b1d65f494dbef7f2152b789c721711000001.tar.gz brdo-0ab0b1d65f494dbef7f2152b789c721711000001.tar.bz2 |
#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
Diffstat (limited to 'modules/user/user.install')
-rw-r--r-- | modules/user/user.install | 4 |
1 files changed, 2 insertions, 2 deletions
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'), ); |