Cannot delete or update a parent row: a foreign key constraint fails.
class Teacher {
/**
*@ORM\\OneToMan
You should add the option onDelete="SET NULL"
in the annotation of your entity Publication like this:
class Publication
{
/**
* @ORM\ManyToOne(targetEntity="Teacher", inversedBy="publications")
* @ORM\JoinColumn(name="teacher_id", referencedColumnName="id", onDelete="SET NULL")
*/
protected $teacher;
}
Cheers!