dzonecat

Results 2 issues of dzonecat

**Describe the bug** The management command `clean_duplicate_history` does only clean the history of model instances that exist. The documentation gives no indication to assume deleted model instances are excluded from...

Serializing a schema that uses `Field(alias=...)` worked up to 0.13.6 but fails beginning with 0.14.0. Reproducer: models.py ``` from django.db import models class Question(models.Model): question_text = models.CharField(max_length=200) class Choice(models.Model): question...