Changed assignment description from charfield to textfield

parent 4044def6
......@@ -3,5 +3,5 @@ from django.db import models
# Create your models here.
class Assignment(models.Model):
name = models.CharField(max_length=50)
description = models.CharField(max_length=1500)
description = models.TextField(max_length=1500)
max_points = models.IntegerField(default=0)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment