Created
September 19, 2017 14:13
-
-
Save petersanchez/e020e908874aa08477974416b78e74cd to your computer and use it in GitHub Desktop.
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 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