THE ERROR: Cannot delete or update a parent row: a foreign key constraint fails

The classes

CLASS TEACHER

class Teacher{
/**
*@ORM\OneToMany(targetEntity="publication", mappedBy="teacher")
*/

protected $publications;
} 

CLASS PUBLICATION

class Publication{
/**
* @ORM\ManyToOne(targetEntity="Teacher", inversedBy="publications")
* @ORM\JoinColumn(name="teacher_id", referencedColumnName="id")
*/

protected $teacher;
}

I WANT: What I want to make is that when you delete a teacher, the id_teacher is modified to NULL. I want to keep the publication but without reference to Professor

I dont know how do that in Doctrine, Is it possible? Or always the relationship has to be with a teacher?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.