Created
August 9, 2018 13:23
-
-
Save moacirmoda/dbd301f28f7c1daad3aaf421c3665b01 to your computer and use it in GitHub Desktop.
MM - Django Models - 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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