init section

This commit is contained in:
xiaomlove
2022-09-06 20:45:29 +08:00
parent fb329f72cc
commit f68b88f754
16 changed files with 496 additions and 5 deletions
+1 -1
View File
@@ -675,7 +675,7 @@ class Install
$sql = 'select version() as v';
$result = NexusDB::select($sql);
$version = $result[0]['v'];
$match = version_compare($version, '5.7.7', '>=');
$match = version_compare($version, '5.7.8', '>=');
return compact('version', 'match');
}