Changeset 60717
- Timestamp:
- 09/07/2025 08:33:43 PM (2 months ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
-
wp-admin/includes/schema.php (modified) (1 diff)
-
wp-admin/includes/upgrade.php (modified) (2 diffs)
-
wp-includes/version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/schema.php
r60614 r60717 185 185 KEY type_status_date (post_type,post_status,post_date,ID), 186 186 KEY post_parent (post_parent), 187 KEY post_author (post_author) 187 KEY post_author (post_author), 188 KEY type_status_author (post_type,post_status,post_author) 188 189 ) $charset_collate;\n"; 189 190 -
trunk/src/wp-admin/includes/upgrade.php
r60716 r60717 2489 2489 * @since 6.9.0 2490 2490 * 2491 * @global int $wp_current_db_version The old (current) database version. 2491 * @global int $wp_current_db_version The old (current) database version. 2492 * @global wpdb $wpdb WordPress database abstraction object. 2492 2493 */ 2493 2494 function upgrade_690() { … … 2503 2504 $active_plugins[ $key ] = $new_plugin; 2504 2505 update_option( 'active_plugins', $active_plugins ); 2506 } 2507 2508 if ( $wp_current_db_version < 60716 ) { 2509 $wpdb->query( "ALTER TABLE $wpdb->posts ADD INDEX type_status_author (post_type,post_status,post_author)" ); 2505 2510 } 2506 2511 } -
trunk/src/wp-includes/version.php
r60497 r60717 24 24 * @global int $wp_db_version 25 25 */ 26 $wp_db_version = 60 497;26 $wp_db_version = 60716; 27 27 28 28 /**
Note: See TracChangeset
for help on using the changeset viewer.