diff options
author | Dan McGee <dan@archlinux.org> | 2010-09-20 15:27:42 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-09-21 09:09:01 -0500 |
commit | 190d0fc1543b3cf30c7050602c9a656065a237fe (patch) | |
tree | 65b8c2dfea4a89fb6ad82454b4258df25a26b5d0 /news/models.py | |
parent | a288066fafa4d427028cba8583c5a3bcf5491ccf (diff) |
Add news slug field
Initially, this needs to allow null so that we can add in slugs for all of
our old news items.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'news/models.py')
-rw-r--r-- | news/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/news/models.py b/news/models.py index ea014492..2d96c3d9 100644 --- a/news/models.py +++ b/news/models.py @@ -3,6 +3,7 @@ from django.contrib.auth.models import User class News(models.Model): id = models.AutoField(primary_key=True) + slug = models.SlugField(max_length=255, null=True, unique=True) author = models.ForeignKey(User, related_name='news_author') postdate = models.DateTimeField("post date", auto_now_add=True, db_index=True) last_modified = models.DateTimeField(editable=False, |