Doctrine 2 association without foreign key constraints

后端 未结 6 1574
醉酒成梦
醉酒成梦 2020-12-16 03:40

I\'m in the process of converting a legacy PHP application to Symfony 2. The application data is not very consistent at the moment, so I would like to avoid creating foreign

6条回答
  •  粉色の甜心
    2020-12-16 04:35

    You have to set lost foreign keys to null, then you can set your contstraint. Following query gives you the ids from datasets to change:

    select p.id from product p
    left join manufacturer m on m.id=p.manufakturer_id
    where m.id is null
    

提交回复
热议问题