Commit db7005baafb859b3cc93614f8325ced1f980ff29

Authored by Andrew Buss
1 parent 137ad42760
Exists in master

expand blanked_word field

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

flashcards/models.py View file @ db7005b
... ... @@ -411,7 +411,7 @@
411 411 """
412 412 user_flashcard = ForeignKey(UserFlashcard)
413 413 when = DateTimeField(auto_now=True)
414   - blanked_word = CharField(max_length=40, blank=True, help_text="The character range which was blanked")
  414 + blanked_word = CharField(max_length=255, blank=True, help_text="The character range which was blanked")
415 415 response = CharField(max_length=255, blank=True, null=True, default=None, help_text="The user's response")
416 416 correct = NullBooleanField(help_text="The user's self-evaluation of their response")
417 417