Set minimum install MySQL version to be 5.5 and a recommended minimum of 5.7
[civicrm-core.git] / Civi / Install / Requirements.php
index 63b6cb05522ea3965ece02e28a9f417b0527f8be..4e94c8568cc3260812f95026d2fbfdd4b0d795fb 100644 (file)
@@ -291,7 +291,7 @@ class Requirements {
    * @return array
    */
   public function checkMysqlVersion(array $db_config) {
-    $min = '5.1';
+    $min = CRM_Upgrade_Incremental_General::MIN_INSTALL_MYSQL_VER;
     $results = [
       'title' => 'CiviCRM MySQL Version',
       'severity' => $this::REQUIREMENT_OK,