upgrade - How to check if a core update, like 4.9.8 → 5.0, involves a database update (migration)?

admin2025-06-05  4

And where do I (reliably) look for this kind of information? I find myself googling for 'wordpress changelog' on every other update...

Background: usually I use a "skeletal" WP installation (seperate wp/app and wp-content folders), so I could try out the new major version and check for theme incompatibilites by "hotswapping" the wp folder. And I'm worried that "swapping back" might not work due to a migrated DB. Yes I know, I should always back it up before an update anyway. Question still stands :)

And where do I (reliably) look for this kind of information? I find myself googling for 'wordpress changelog' on every other update...

Background: usually I use a "skeletal" WP installation (seperate wp/app and wp-content folders), so I could try out the new major version and check for theme incompatibilites by "hotswapping" the wp folder. And I'm worried that "swapping back" might not work due to a migrated DB. Yes I know, I should always back it up before an update anyway. Question still stands :)

Share Improve this question edited Dec 13, 2018 at 12:01 kubi asked Dec 10, 2018 at 10:56 kubikubi 3812 silver badges9 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 2

So after some thinking I came up with this:

Codex / Wordpress Versions has Changelogs, but these seem to mention (recent) database upgrades implicitly, starting at 5.0. (Compare how Matomo explicitly states DB upgrades). Maybe this will be enough for future versions, here's the thorough, cumbersome way that works for older versions, too:

  1. check db_version at Codex / Wordpress Versions, or manually/programmatically:
    1. check wp-includes/version.php of the version we are updating from, 4.9.8: $wp_db_version = 38590;
    2. repeat for version we are updating to; 5.0: $wp_db_version = 43764;
  2. check upgrade_all in wp-admin/includes/upgrade.php, for 4.9.8→5.0 / 38590→43764:

    // ...
    if ( $wp_current_db_version < 37965 ) // false
        upgrade_460();
    
    if ( $wp_current_db_version < 43764 ) // true!
        upgrade_500();
    
  3. finally, inspecting upgrade_500, reveals some Gutenberg-juggling and a FIXME :)

  4. Conclusion: Only very minor database upgrades (one site option is set), so it should be fine, just keep an eye out for Gutenberg & Classic Editor plugin.

UPDATE/EDIT, regarding the "Background": So I did do a manual update 4.9.9→5.0 and then a manual downgrade 5.0→4.9.9 (4.9.8 and .9 don't differ DB-wise). I was presented with the "DB Upgrade required" screen both ways, and proceeded. What happens upon downgrade would need more research; my guess is that you only see the screen and none of the upgrade_* functions are executed. After up-and-downgrade everything looks normal, at least for this minimal, fresh install. So I will feel free to upgrade 4.9.8 to 5.0, knowing I can switch back should anything go wrong. YMMV, of course, especially when other plugins and themes are involved. Wouldn't do it for bigger version jumps, though :)

I upgraded 2 of my sites from version 4.9.8 to 5.0 and it did not require any database update. Also I had installed Gutenberg and the update disables the plugin since it's already integrated with the new version.

If you are concerned about the update, backup your database and site before the upgrading.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749103184a316387.html

最新回复(0)