| @@ -74,8 +74,13 @@ | ||
| 74 | 74 | |
| 75 | 75 | foreach ($fieldsArray as $fieldKey => $field) { |
| 76 | 76 | // print_r(gettype($field)); |
| 77 | 77 | $convertFormate = $conversionFormate->getFormate($field->typ); |
| 78 | + // Unknown field type: keep the field as-is instead of fataling the migration | |
| 79 | + if (empty($convertFormate)) { | |
| 80 | + $newFieldsArray[$fieldKey] = $field; | |
| 81 | + continue; | |
| 82 | + } | |
| 78 | 83 | $newFieldProperty = []; |
| 79 | 84 | |
| 80 | 85 | // convert unchange property |
| 81 | 86 | foreach ($convertFormate['unchangeProperty'] as $property) { |