class Author(models.Model):
name = models.CharField(max_length=100)
class Book(models.Model):
title = models.CharField(max_length=200)
author = models.ForeignKey(Author, on_delete=???)
You want the following behaviour: when an Author is deleted, all their books should remain in the database but with `author` set to `NULL`.
Which `on_delete` option achieves this?