Make WordPress Core

Changeset 29188


Ignore:
Timestamp:
07/16/2014 03:53:14 PM (10 years ago)
Author:
nacin
Message:

DB schema change: Add comment_author_email(10) index.

props tellyworth, pento.
fixes #21435.

Location:
trunk/src
Files:
2 edited

Legend:

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

    r28832 r29188  
    102102  KEY comment_approved_date_gmt (comment_approved,comment_date_gmt),
    103103  KEY comment_date_gmt (comment_date_gmt),
    104   KEY comment_parent (comment_parent)
     104  KEY comment_parent (comment_parent),
     105  KEY comment_author_email (comment_author_email(10))
    105106) $charset_collate;
    106107CREATE TABLE $wpdb->links (
  • trunk/src/wp-includes/version.php

    r29138 r29188  
    1212 * @global int $wp_db_version
    1313 */
    14 $wp_db_version = 27916;
     14$wp_db_version = 29188;
    1515
    1616/**
Note: See TracChangeset for help on using the changeset viewer.