summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/system.install')
-rw-r--r--modules/system/system.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 9a48ca3b3..d1aaa45ff 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -1567,7 +1567,7 @@ function system_schema() {
),
'primary key' => array('filename'),
'indexes' => array(
- 'system_list' => array('status', 'weight', 'name'),
+ 'system_list' => array('weight', 'name'),
'type_name' => array('type', 'name'),
),
);
@@ -2203,7 +2203,7 @@ function system_update_7018() {
db_drop_index('system', 'bootstrap');
db_change_field('system', 'type', 'type', array('type' => 'varchar', 'length' => 12, 'not null' => TRUE, 'default' => ''));
db_add_index('system', 'type_name', array('type', 'name'));
- db_add_index('system', 'system_list', array('status', 'weight', 'name'));
+ db_add_index('system', 'system_list', array('weight', 'name'));
}
/**