[MODULES] Fix small error in modules manager

This commit is contained in:
Hugo Sales
2020-03-30 14:43:45 +00:00
committed by Hugo Sales
parent 6193062590
commit e022a5e65e
2 changed files with 3 additions and 2 deletions

View File

@@ -74,7 +74,8 @@ class SchemaDefDriver extends StaticPHPDriver
$metadata->setPrimaryTable(['name' => $schema['name'],
'indexes' => self::kv_to_name_col($schema['indexes']),
'uniqueConstraints' => self::kv_to_name_col($schema['unique keys']),
'options' => ['comment' => $schema['description']], ]);
'options' => ['comment' => $schema['description'] ?? ''],
]);
foreach ($schema['fields'] as $name => $opts) {
// Convert old to new types