diff --git a/lib/Doctrine/Import/Schema.php b/lib/Doctrine/Import/Schema.php index daeb6d8b4..883f0dea5 100644 --- a/lib/Doctrine/Import/Schema.php +++ b/lib/Doctrine/Import/Schema.php @@ -103,7 +103,7 @@ abstract class Doctrine_Import_Schema public function buildRelationships($array) { - foreach($array as $name => $properties) { + foreach ($array as $name => $properties) { $className = $properties['className']; $relations = $properties['relations']; @@ -116,5 +116,12 @@ abstract class Doctrine_Import_Schema $this->relations[$className][$class] = $relation; } } + + // Fix the other end of the relations + foreach($this->relations as $className => $relations) { + foreach ($relations AS $alias => $relation) { + + } + } } } \ No newline at end of file