summaryrefslogtreecommitdiff
path: root/website/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'website/models.py')
-rwxr-xr-xwebsite/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/models.py b/website/models.py
index d254e18..71de521 100755
--- a/website/models.py
+++ b/website/models.py
@@ -17,7 +17,7 @@ class Proposal(models.Model):
title = models.CharField(max_length=250)
abstract = models.TextField(max_length=700)
prerequisite = models.CharField(max_length=750)
- duration = models.DurationField()
+ duration = models.CharField(max_length = 100)
attachment = models.FileField(upload_to=get_document_dir)
date_created = models.DateTimeField(auto_now_add=True)
date_modified = models.DateTimeField(auto_now=True)