django error on migration: "There is no unique constraint matching given keys for referenced table

前端 未结 2 954
误落风尘
误落风尘 2021-01-20 02:54

So I have seen that a lot of these kinds of questions have popped up (few answered) and none in a Django aspect that I saw. I am confused why I am getting the error, I am g

2条回答
  •  星月不相逢
    2021-01-20 03:41

    To solve this, needed to add the unique constraint on the postgres table id myself.

    psql 
    ALTER TABLE swsite_zoneentity ADD CONSTRAINT zone_unique_id UNIQUE(id);
    

    Like this answer

提交回复
热议问题