Skip to content

Instantly share code, notes, and snippets.

@brunomichetti
Created September 25, 2019 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunomichetti/dac23ddcad86d686ff6c3204a9ec45dd to your computer and use it in GitHub Desktop.
Save brunomichetti/dac23ddcad86d686ff6c3204a9ec45dd to your computer and use it in GitHub Desktop.
from django.db import models
from applications.people.models import Person
class Pet(models.Model):
owner = models.ForeignKey(Person, related_name='pets', on_delete=models.CASCADE)
name = models.CharField(max_length=30)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment