Skip to content

Instantly share code, notes, and snippets.

@petersanchez
Created September 19, 2017 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petersanchez/e020e908874aa08477974416b78e74cd to your computer and use it in GitHub Desktop.
Save petersanchez/e020e908874aa08477974416b78e74cd to your computer and use it in GitHub Desktop.
class BlogPost(models.Model):
title = models.CharField(max_length=200)
slug = models.SlugField(max_length=200)
body = models.TextField()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment