diff options
author | luxagraf <sng@luxagraf.net> | 2015-11-15 13:49:40 +0000 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2015-11-15 13:49:40 +0000 |
commit | 9652ecd1d29e0a0ed02a8dc2778b7d0caa0ff921 (patch) | |
tree | 9f8e817ca6cd63f5fd0ce53d8343e36d8e94e947 /app/resume | |
parent | 10402b86a75c83a02945b5528010dcefab41fc37 (diff) |
changed pub_date datatype on resume pubitems
Diffstat (limited to 'app/resume')
-rw-r--r-- | app/resume/models.py | 2 |
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: |