/**
* Method to return database version number.
*
* This overrides wpdb::db_version() to avoid using MySQL function.
* It returns mysql version number, but it means nothing for SQLite.
* So it return the newest mysql version.
*
* @see wpdb::db_version()
*/
public function db_version()
{
// WordPress currently requires this to be 5.0 or greater. <--- Required > 5.5.5
return '8'; // <--- Anything above 5.5.5
}
DB version has changed
File: db.php
Line: 2826