diff options
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 c2d644b7..e2486c96 100644 --- a/news/models.py +++ b/news/models.py @@ -2,6 +2,7 @@ from django.db import models from django.contrib.auth.models import User class News(models.Model): + id = models.AutoField(primary_key=True) slug = models.SlugField(max_length=255, unique=True) author = models.ForeignKey(User, related_name='news_author') postdate = models.DateTimeField("post date", auto_now_add=True, db_index=True) |