Skip to content

Commit bfe7d50

Browse files
authored
[5.0] [RFC] Adapt minimum database server versions to Joomla 5 (#40790)
* Adapt minimum db server versions to Joomla 5 * Change minimum MySQL server version from 8.0.11 to 8.0.13
1 parent 3046bc6 commit bfe7d50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

installation/src/Helper/DatabaseHelper.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ abstract class DatabaseHelper
3636
* @var string
3737
* @since 4.0.0
3838
*/
39-
protected static $dbMinimumMariaDb = '10.1';
39+
protected static $dbMinimumMariaDb = '10.4';
4040

4141
/**
4242
* The minimum database server version for MySQL databases as required by the CMS.
@@ -45,7 +45,7 @@ abstract class DatabaseHelper
4545
* @var string
4646
* @since 4.0.0
4747
*/
48-
protected static $dbMinimumMySql = '5.6';
48+
protected static $dbMinimumMySql = '8.0.13';
4949

5050
/**
5151
* The minimum database server version for PostgreSQL databases as required by the CMS.
@@ -54,7 +54,7 @@ abstract class DatabaseHelper
5454
* @var string
5555
* @since 4.0.0
5656
*/
57-
protected static $dbMinimumPostgreSql = '11.0';
57+
protected static $dbMinimumPostgreSql = '12.0';
5858

5959
/**
6060
* Method to get a database driver.

0 commit comments

Comments
 (0)