Skip to content

Instantly share code, notes, and snippets.

@moacirmoda
Created August 9, 2018 13:23
Show Gist options
  • Save moacirmoda/dbd301f28f7c1daad3aaf421c3665b01 to your computer and use it in GitHub Desktop.
Save moacirmoda/dbd301f28f7c1daad3aaf421c3665b01 to your computer and use it in GitHub Desktop.
MM - Django Models - 3
class Reporter(models.Model):
# ...
pass
class Article(models.Model):
reporter = models.ForeignKey(Reporter, on_delete=models.CASCADE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment