1
0
mirror of synced 2025-01-18 06:21:40 +03:00

Merge branch 'DDC-2280'

This commit is contained in:
Benjamin Eberlei 2013-05-09 18:15:48 +02:00
commit 762f43c3dc

View File

@ -155,6 +155,10 @@ class XmlExporter extends AbstractExporter
$idXml->addAttribute('column', $field['columnName']);
}
if (isset($field['length'])) {
$idXml->addAttribute('length', $field['length']);
}
if (isset($field['associationKey']) && $field['associationKey']) {
$idXml->addAttribute('association-key', 'true');
}