summaryrefslogtreecommitdiffstats
path: root/news/models.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-09-20 22:27:42 +0200
committerDan McGee <dan@archlinux.org>2010-09-21 16:09:01 +0200
commit190d0fc1543b3cf30c7050602c9a656065a237fe (patch)
tree65b8c2dfea4a89fb6ad82454b4258df25a26b5d0 /news/models.py
parenta288066fafa4d427028cba8583c5a3bcf5491ccf (diff)
downloadarchweb-190d0fc1543b3cf30c7050602c9a656065a237fe.tar.gz
archweb-190d0fc1543b3cf30c7050602c9a656065a237fe.tar.xz
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.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/news/models.py b/news/models.py
index ea01449..2d96c3d 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,