- 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
No known key found for this signature in database
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() public static function writeStructure()
{ {
$tables = []; $tables = [];
foreach (self::definition(null) as $name => $definition) { foreach (self::definition('') as $name => $definition) {
$indexes = [[ $indexes = [[
'name' => 'Name', 'name' => 'Name',
'fields' => 'Fields', 'fields' => 'Fields',