Skip to content

Instantly share code, notes, and snippets.

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