Django 1.3a1
và hỗ trợ điều này qua ForeignKey
của on_delete
đối số.
Ví dụ sau đặt trường NULL
sau khi xóa khóa ngoại. Xem tài liệu để có thêm tùy chọn.
user = models.ForeignKey(User, blank=True, null=True, on_delete=models.SET_NULL)