summaryrefslogtreecommitdiffstats
path: root/models.py
diff options
context:
space:
mode:
authorAamir Khan <syst3m.w0rm@gmail.com>2012-06-20 01:09:33 -0400
committerAamir Khan <syst3m.w0rm@gmail.com>2012-06-20 01:09:33 -0400
commit43e50062e50495d0cf0ff1e66a7d5bfac16629c8 (patch)
tree77cc3746a5c4959ffdc18fbc35872aa7dc86fc1c /models.py
parentaf0900fc6ce9f52347265fd5b899004554cb07a8 (diff)
downloadhyperkitty-43e50062e50495d0cf0ff1e66a7d5bfac16629c8.tar.gz
hyperkitty-43e50062e50495d0cf0ff1e66a7d5bfac16629c8.tar.xz
hyperkitty-43e50062e50495d0cf0ff1e66a7d5bfac16629c8.zip
messageid was getting truncated because of insufficient length
Diffstat (limited to 'models.py')
-rw-r--r--models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/models.py b/models.py
index 1ba3757..a96cb82 100644
--- a/models.py
+++ b/models.py
@@ -3,6 +3,6 @@ from django.contrib.auth.models import User
class Rating(models.Model):
list_address = models.CharField(max_length=50)
- messageid = models.CharField(max_length=30)
+ messageid = models.CharField(max_length=100)
user = models.ForeignKey(User)
vote = models.SmallIntegerField()