обновился до 1.11.6 тот же самый вариант) определён foreign key между моделями
class CardFirstPhrase(models.Model):
speech = models.ForeignKey('content.Speech', verbose_name=l_('Speech'), related_name='first_phrases_card',
on_delete=models.SET_NULL,
null=True, blank=True)
То есть параметр on_delete определён как SET_NULL, однако при удалении Speech возникает IntegrityError
IntegrityError: update or delete on table "content_speech" violates foreign key constraint "cardgame_cardfirstph_speech_id_776a5f45_fk_content_s" on table "cardgame_cardfirstphrase"
DETAIL: Key (id)=(3179) is still referenced from table "cardgame_cardfirstphrase".
СУБД - PostgreSQL 9.6.3
Ничего толкового в гугле не нашёл. Может что-то не так с настройкой Постгреса?
миграция сделана?
а как выглядит \d cardgame_cardfirstphrase в консоли постги?
Обсуждают сегодня