diff --git a/wp-admin/includes/schema.php b/wp-admin/includes/schema.php index a8f5b49015..8dd5234da2 100644 --- a/wp-admin/includes/schema.php +++ b/wp-admin/includes/schema.php @@ -51,7 +51,7 @@ function wp_get_db_schema( $scope = 'all', $blog_id = null ) { slug varchar(200) NOT NULL default '', term_group bigint(10) NOT NULL default 0, PRIMARY KEY (term_id), - UNIQUE KEY slug (slug), + KEY slug (slug), KEY name (name) ) $charset_collate; CREATE TABLE $wpdb->term_taxonomy ( diff --git a/wp-includes/version.php b/wp-includes/version.php index b65e8c1ebd..1222d82c94 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30055'; +$wp_version = '4.1-alpha-30056'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.