Make WordPress Core

Changeset 10733


Ignore:
Timestamp:
03/06/2009 08:26:45 AM (15 years ago)
Author:
ryan
Message:

Add index on taxonomy. see #7415

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/schema.php

    r10730 r10733  
    4545 count bigint(20) NOT NULL default 0,
    4646 PRIMARY KEY  (term_taxonomy_id),
    47  UNIQUE KEY term_id_taxonomy (term_id,taxonomy)
     47 UNIQUE KEY term_id_taxonomy (term_id,taxonomy),
     48 KEY taxonomy (taxonomy)
    4849) $charset_collate;
    4950CREATE TABLE $wpdb->term_relationships (
  • trunk/wp-includes/version.php

    r10553 r10733  
    1616 * @global int $wp_db_version
    1717 */
    18 $wp_db_version = 10553;
     18$wp_db_version = 10733;
    1919
    2020?>
Note: See TracChangeset for help on using the changeset viewer.