[2.0] DDC-329 - Allow Reverse Engineering with multiple column foreign keys
This commit is contained in:
parent
5a96217d4d
commit
49d2dd9bf2
1 changed files with 7 additions and 16 deletions
|
@ -124,30 +124,21 @@ class DatabaseDriver implements Driver
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($foreignKeys as $foreignKey) {
|
foreach ($foreignKeys as $foreignKey) {
|
||||||
if (count($foreignKey->getColumns()) != 1) {
|
|
||||||
throw new MappingException(
|
|
||||||
"Cannot generate mapping for table '".$tableName."' with foreign keys with multiple local columns."
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$cols = $foreignKey->getColumns();
|
$cols = $foreignKey->getColumns();
|
||||||
$localColumn = current($cols);
|
$localColumn = current($cols);
|
||||||
|
|
||||||
$fkCols = $foreignKey->getForeignColumns();
|
$fkCols = $foreignKey->getForeignColumns();
|
||||||
if (count($fkCols) != 1) {
|
|
||||||
throw new MappingException(
|
|
||||||
"Cannot generate mapping for table '".$tableName."' with foreign keys with multiple foreign columns."
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$foreignColumn = current($fkCols);
|
|
||||||
|
|
||||||
$associationMapping = array();
|
$associationMapping = array();
|
||||||
$associationMapping['fieldName'] = Inflector::camelize(str_ireplace('_id', '', $localColumn));
|
$associationMapping['fieldName'] = Inflector::camelize(str_ireplace('_id', '', $localColumn));
|
||||||
$associationMapping['columnName'] = $localColumn;
|
|
||||||
$associationMapping['targetEntity'] = Inflector::classify($foreignKey->getForeignTableName());
|
$associationMapping['targetEntity'] = Inflector::classify($foreignKey->getForeignTableName());
|
||||||
$associationMapping['joinColumns'][] = array(
|
|
||||||
'name' => $localColumn,
|
for ($i = 0; $i < count($cols); $i++) {
|
||||||
'referencedColumnName' => $foreignColumn
|
$associationMapping['joinColumns'][] = array(
|
||||||
);
|
'name' => $cols[$i],
|
||||||
|
'referencedColumnName' => $fkCols[$i],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
$metadata->mapManyToOne($associationMapping);
|
$metadata->mapManyToOne($associationMapping);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue