Ticket #14711: comment-indexes-r15542.patch
File comment-indexes-r15542.patch, 970 bytes (added by , 10 years ago) |
---|
-
wp-includes/version.php
15 15 * 16 16 * @global int $wp_db_version 17 17 */ 18 $wp_db_version = 15 477;18 $wp_db_version = 15542; 19 19 20 20 /** 21 21 * Holds the TinyMCE version -
wp-admin/includes/schema.php
82 82 KEY comment_post_ID (comment_post_ID), 83 83 KEY comment_approved_date_gmt (comment_approved,comment_date_gmt), 84 84 KEY comment_date_gmt (comment_date_gmt), 85 KEY comment_parent (comment_parent) 85 KEY comment_parent (comment_parent), 86 KEY user_id (user_id), 87 KEY comment_author_email (comment_author_email) 86 88 ) $charset_collate; 87 89 CREATE TABLE $wpdb->links ( 88 90 link_id bigint(20) unsigned NOT NULL auto_increment,