Skip to content

Commit

Permalink
fix: remove non-existing field 'table_local' (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
4allportaleabdullah committed Sep 19, 2024
1 parent 18e80ec commit ec65b37
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Classes/DynamicModel/DynamicModelGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,6 @@ protected function determineTableConfigurationForRelation(string $originalName,
[
'fieldname' => 'product_images',
'tablenames' => 'tx_syzygyproducts_domain_model_productdetail',
'table_local' => 'sys_file',
],
'foreign_label' => 'uid_local',
'foreign_selector' => 'uid_local',
Expand Down Expand Up @@ -890,8 +889,7 @@ protected function determineTableConfigurationForRelation(string $originalName,
//'maxitems' => $fieldType === 'ONE_TO_ONE' ? 1 : 99999,
'foreign_match_fields' => [
'fieldname' => $fieldConfiguration['field'],
'tablenames' => $currentTableName,
'table_local' => 'sys_file',
'tablenames' => $currentTableName
]
]
);
Expand Down

0 comments on commit ec65b37

Please sign in to comment.