aboutsummaryrefslogtreecommitdiffstats
path: root/aggregator/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'aggregator/models.py')
-rw-r--r--aggregator/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/aggregator/models.py b/aggregator/models.py
index d873e6c..b5c4f3c 100644
--- a/aggregator/models.py
+++ b/aggregator/models.py
@@ -25,7 +25,7 @@ class Feed(models.Model):
ordering = [ '-updated' ]
class Post(models.Model):
- post_id = models.CharField(max_length=500, unique=True)
+ post_id = models.CharField(max_length=255, unique=True)
title = models.CharField(max_length=500)
body = models.TextField()
remote_url = models.URLField(max_length=255)