Set association-key attribute in xml mapping
This commit is contained in:
parent
0b1f6e3539
commit
0d57ffbc3b
@ -139,6 +139,9 @@ class XmlExporter extends AbstractExporter
|
|||||||
if (isset($field['columnName'])) {
|
if (isset($field['columnName'])) {
|
||||||
$idXml->addAttribute('column', $field['columnName']);
|
$idXml->addAttribute('column', $field['columnName']);
|
||||||
}
|
}
|
||||||
|
if (isset($field['associationKey']) && $field['associationKey']) {
|
||||||
|
$idXml->addAttribute('association-key', 'true');
|
||||||
|
}
|
||||||
if ($idGeneratorType = $this->_getIdGeneratorTypeString($metadata->generatorType)) {
|
if ($idGeneratorType = $this->_getIdGeneratorTypeString($metadata->generatorType)) {
|
||||||
$generatorXml = $idXml->addChild('generator');
|
$generatorXml = $idXml->addChild('generator');
|
||||||
$generatorXml->addAttribute('strategy', $idGeneratorType);
|
$generatorXml->addAttribute('strategy', $idGeneratorType);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user