Created
September 24, 2020 01:27
-
-
Save toxinu/d125f613cf1ec679c7dba0cd54f8d7fd to your computer and use it in GitHub Desktop.
blog/restless-for-building-python-restful-api
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 Country(models.Model): | |
| name = models.CharField(max_length=2) | |
| class Pizza(models.Model): | |
| name = models.CharField(max_length=255) | |
| country = models.ForeignKey(Country) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment