Changed default value of Assignment's max points from 0 to 10

parent 27c52007
......@@ -4,4 +4,4 @@ from django.db import models
class Assignment(models.Model):
name = models.CharField(max_length=120)
description = models.TextField(blank=True)
max_points = models.IntegerField(default=1)
max_points = models.IntegerField(default=10)
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