From db7005baafb859b3cc93614f8325ced1f980ff29 Mon Sep 17 00:00:00 2001 From: Andrew Buss Date: Wed, 3 Jun 2015 16:17:54 -0700 Subject: [PATCH] expand blanked_word field --- flashcards/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flashcards/models.py b/flashcards/models.py index f0f73dd..881db4d 100644 --- a/flashcards/models.py +++ b/flashcards/models.py @@ -411,7 +411,7 @@ class UserFlashcardQuiz(Model): """ user_flashcard = ForeignKey(UserFlashcard) when = DateTimeField(auto_now=True) - blanked_word = CharField(max_length=40, blank=True, help_text="The character range which was blanked") + blanked_word = CharField(max_length=255, blank=True, help_text="The character range which was blanked") response = CharField(max_length=255, blank=True, null=True, default=None, help_text="The user's response") correct = NullBooleanField(help_text="The user's self-evaluation of their response") -- 1.9.1