Allow for manual marking of question of type "file_upload"
[edumed.git] / wtem / models.py
index 4c91392..bef8b7c 100644 (file)
@@ -66,7 +66,7 @@ class Submission(models.Model):
 
 class Attachment(models.Model):
     submission = models.ForeignKey(Submission)
-    name = models.CharField(max_length=100)
+    exercise_id = models.IntegerField()
     file = models.FileField(upload_to = 'wtem/attachment')