Skip to content

Commit

Permalink
Fix class field rename error
Browse files Browse the repository at this point in the history
  • Loading branch information
dturopoli authored and dvesh3 committed Dec 20, 2021
1 parent dfb865a commit 4fabd62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/DataObject/ClassDefinition/Service.php
Expand Up @@ -398,7 +398,7 @@ public static function skipColumn($tableDefinitions, $table, $colName, $type, $d
{
$tableDefinition = $tableDefinitions[$table] ?? false;
if ($tableDefinition) {
$colDefinition = $tableDefinition[$colName];
$colDefinition = $tableDefinition[$colName] ?? false;
if ($colDefinition) {
if (!strlen($default) && strtolower($null) === 'null') {
$default = null;
Expand Down

0 comments on commit 4fabd62

Please sign in to comment.