From 033c07e86b42515b8ade9e7a300f6e9ff1f3d671 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 7 Aug 2006 00:30:56 +0000 Subject: [PATCH] Fix duplicate index error. Props ryanscheuermann. fixes #2695 git-svn-id: http://svn.automattic.com/wordpress/trunk@4076 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/upgrade-schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/upgrade-schema.php b/wp-admin/upgrade-schema.php index dbd685a25b..ea5bc5df88 100644 --- a/wp-admin/upgrade-schema.php +++ b/wp-admin/upgrade-schema.php @@ -118,7 +118,7 @@ CREATE TABLE $wpdb->posts ( comment_count bigint(20) NOT NULL default '0', PRIMARY KEY (ID), KEY post_name (post_name), - KEY type_status_date (post_type, post_status, post_date, ID) + KEY type_status_date (post_type,post_status,post_date,ID) ); CREATE TABLE $wpdb->users ( ID bigint(20) unsigned NOT NULL auto_increment,