summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/resume/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/resume/models.py b/app/resume/models.py
index 4df639e..13a40fe 100644
--- a/app/resume/models.py
+++ b/app/resume/models.py
@@ -22,7 +22,7 @@ class PubItem(models.Model):
body_markdown = models.TextField(null=True, blank=True)
body_html = models.TextField(null=True, blank=True)
url = models.CharField(max_length=200, blank=True, null=True)
- pub_date = models.CharField(max_length=40, blank=True, null=True)
+ pub_date = models.DateTimeField('Date published')
publisher = models.ForeignKey(Publisher)
class Meta: