summaryrefslogtreecommitdiff
path: root/app/posts/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/posts/models.py')
-rw-r--r--app/posts/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/posts/models.py b/app/posts/models.py
index b518554..06794be 100644
--- a/app/posts/models.py
+++ b/app/posts/models.py
@@ -30,6 +30,7 @@ class Post(models.Model):
title = models.CharField(max_length=512, blank=True, null=True)
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()
guid = models.CharField(max_length=512, blank=True, null=True, db_index=True)
author = models.CharField(max_length=255, blank=True, null=True)