schema.yml

Doctrine: 1 to many relationship with multiple foreign keys

Hi, I am using Doctrine 1.2 and looking for the correct syntax for creating a 1:n relationship between two tables in my schema.yml Usual this is done by: BookChapter: columns: ... relations: Book: class: Book local: book_id foreign: id type: one onDelete: cascade However in my special case t...