Skip to content

Instantly share code, notes, and snippets.

@toxinu
Created September 24, 2020 01:27
Show Gist options
  • Select an option

  • Save toxinu/d125f613cf1ec679c7dba0cd54f8d7fd to your computer and use it in GitHub Desktop.

Select an option

Save toxinu/d125f613cf1ec679c7dba0cd54f8d7fd to your computer and use it in GitHub Desktop.
blog/restless-for-building-python-restful-api
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