Commit 4b366ecde14a0993d4ee52159e3508815024f500
1 parent
c610aa04f6
Exists in
master
Changed length of response in UserFlashcardReview from 256 to 255.
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
flashy/flashcards/models.py
View file @
4b366ec
... | ... | @@ -19,7 +19,7 @@ |
19 | 19 | user_flashcard = models.ForeignKey(UserFlashCard) |
20 | 20 | when = models.DateTimeField() |
21 | 21 | blanked_word = models.CharField(max_length=8) |
22 | - response = models.CharField(max_length=256, blank=True, null=True) | |
22 | + response = models.CharField(max_length=255, blank=True, null=True) | |
23 | 23 | correct = models.NullBooleanField() |
24 | 24 | |
25 | 25 | class Class(models.Model): |