Skip to content

Instantly share code, notes, and snippets.

@egitimplus
Created November 2, 2020 17:52
Show Gist options
  • Save egitimplus/b8baf456a9216380aceb855ae35f347d to your computer and use it in GitHub Desktop.
Save egitimplus/b8baf456a9216380aceb855ae35f347d to your computer and use it in GitHub Desktop.
class Ceo(models.Model):
name = models.CharField(max_length=255, blank=True)
car = models.OneToOneField(Car, on_delete=models.CASCADE)
def __str__(self):
return self.name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment