Seun D
Results
2
comments of
Seun D
Doesn't work for me either: ``` class PatientRecord(models.Model): checkup_interval = models.IntegerField(default=180) class Patient(models.Model): name = models.CharField(max_length=64) # date_of_birth = models.DateField() record = AutoOneToOneField(PatientRecord, on_delete=models.CASCADE) registration_date = models.DateField() last_visit = models.DateField(blank=True,...