From 92f595819cc0b45a5b00ea23f561ddf4b4066f65 Mon Sep 17 00:00:00 2001 From: Andrew Buss Date: Wed, 3 Jun 2015 16:23:05 -0700 Subject: [PATCH] oh, include the migration too --- flashcards/migrations/0021_auto_20150603_1617.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 flashcards/migrations/0021_auto_20150603_1617.py diff --git a/flashcards/migrations/0021_auto_20150603_1617.py b/flashcards/migrations/0021_auto_20150603_1617.py new file mode 100644 index 0000000..13ef56e --- /dev/null +++ b/flashcards/migrations/0021_auto_20150603_1617.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('flashcards', '0020_merge'), + ] + + operations = [ + migrations.AlterField( + model_name='userflashcardquiz', + name='blanked_word', + field=models.CharField(help_text=b'The character range which was blanked', max_length=255, blank=True), + ), + ] -- 1.9.1