Commit d965aae3ba5a76aeb42f9a500c92058b8157a53d

Authored by Laura Hawkins
Exists in master

Merge branch 'master' of https://git.ucsd.edu/110swag/flashy-backend

Showing 1 changed file Side-by-side Diff

flashy/flashcards/models.py View file @ d965aae
... ... @@ -32,7 +32,7 @@
32 32 user_flashcard = models.ForeignKey(UserFlashCard)
33 33 when = models.DateTimeField()
34 34 blanked_word = models.CharField(max_length=8)
35   - response = models.CharField(max_length=256, blank=True, null=True)
  35 + response = models.CharField(max_length=255, blank=True, null=True)
36 36 correct = models.NullBooleanField()
37 37  
38 38 class Class(models.Model):