diff --git a/flashy/flashcards/models.py b/flashy/flashcards/models.py index 2476e0f..6d8303c 100644 --- a/flashy/flashcards/models.py +++ b/flashy/flashcards/models.py @@ -19,7 +19,7 @@ class UserFlashCardReview(models.Model): user_flashcard = models.ForeignKey(UserFlashCard) when = models.DateTimeField() blanked_word = models.CharField(max_length=8) - response = models.CharField(max_length=256, blank=True, null=True) + response = models.CharField(max_length=255, blank=True, null=True) correct = models.NullBooleanField() class Class(models.Model):