Hello,
          I am trying to create a Unidirectional with One-To-Many relation 
with Join Table. The problem I am having is that the schema update command 
is not generating the join table necessary for the relationship. I am 
following the code posted here 
-> 
http://doctrine-orm.readthedocs.org/en/latest/reference/association-mapping.html#one-to-many-unidirectional-with-join-table
 

Here is the YAML I am using:

  manyToMany:
    direcciones:
      targetEntity: Direccion
      joinTable:
        name: talleres_direcciones
        joinColumns:
          taller_id:
            referencedColumnName: id
        inverseJoinColumns:
          direccion_id:
            referencedColumnName: id
            unique: true

-- 
You received this message because you are subscribed to the Google Groups 
"doctrine-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/doctrine-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to