diff --git a/other/install.php b/other/install.php index 5d487c548b..2dab1f10e2 100644 --- a/other/install.php +++ b/other/install.php @@ -67,7 +67,7 @@ $databases = [ 'mysql' => [ 'name' => 'MySQL', - 'version' => '5.6.0', + 'version' => '8.0.35', 'version_check' => function () { if (!function_exists('mysqli_fetch_row')) { return false; @@ -96,7 +96,7 @@ ], 'postgresql' => [ 'name' => 'PostgreSQL', - 'version' => '9.6', + 'version' => '12.17', 'version_check' => function () { $request = pg_query(Db::$db->connection, 'SELECT version()'); list($version) = pg_fetch_row($request); diff --git a/other/upgrade.php b/other/upgrade.php index 6e0b0ddc78..50f58136d7 100644 --- a/other/upgrade.php +++ b/other/upgrade.php @@ -53,7 +53,7 @@ $databases = [ 'mysql' => [ 'name' => 'MySQL', - 'version' => '5.6.0', + 'version' => '8.0.35', 'version_check' => function () { if (!function_exists('mysqli_fetch_row')) { return false; @@ -65,7 +65,7 @@ ], 'postgresql' => [ 'name' => 'PostgreSQL', - 'version' => '9.6', + 'version' => '12.17', 'version_check' => function () { if (!function_exists('pg_version')) { return false;