- dbstructure(null) is no longer possible, an empty string does it
This commit is contained in:
Roland Häder 2022-06-19 09:11:08 +02:00
parent b6bfe72083
commit f3599fa3e9
Signed by: roland
GPG Key ID: C82EDE5DDFA0BA77
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ class DBStructure
public static function writeStructure()
{
$tables = [];
foreach (self::definition(null) as $name => $definition) {
foreach (self::definition('') as $name => $definition) {
$indexes = [[
'name' => 'Name',
'fields' => 'Fields',