From fe7acd41bfd36e4bc7ed355fcf929670e0b513e4 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Tue, 16 Jul 2013 16:29:25 +0100 Subject: [PATCH] Issue #2040571 by Xano: Fixed Missing index on router table. --- core/modules/system/system.install | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/core/modules/system/system.install b/core/modules/system/system.install index 69d032590a9..d246507fd14 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -967,8 +967,7 @@ function system_schema() { ), ), 'indexes' => array( - 'fit' => array('fit'), - 'pattern_outline' => array('pattern_outline'), + 'pattern_outline_fit' => array('pattern_outline', 'fit'), 'route_set' => array('route_set'), ), 'primary key' => array('name'), @@ -1624,8 +1623,7 @@ function system_update_8022() { ), ), 'indexes' => array( - 'fit' => array('fit'), - 'pattern_outline' => array('pattern_outline'), + 'pattern_outline_fit' => array('pattern_outline', 'fit'), 'route_set' => array('route_set'), ), 'primary key' => array('name'),