summaryrefslogtreecommitdiff
path: root/app/gtd/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/gtd/models.py')
-rw-r--r--app/gtd/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/gtd/models.py b/app/gtd/models.py
index e021b42..f234c62 100644
--- a/app/gtd/models.py
+++ b/app/gtd/models.py
@@ -149,7 +149,7 @@ class WiredPost(models.Model):
body = models.TextField(blank=True, null=True)
url = models.CharField(max_length=512, blank=True, null=True)
edit_url = models.CharField(max_length=512, blank=True, null=True)
- date_last_pub = models.DateField(default=timezone.now())
+ date_last_pub = models.DateField()
guid = models.CharField(max_length=512, blank=True, null=True, db_index=True)
author = models.CharField(max_length=255, blank=True, null=True)
post_type = models.IntegerField(choices=PostType.choices, default=PostType.GUIDE)