Commit 92f595819cc0b45a5b00ea23f561ddf4b4066f65

Authored by Andrew Buss
1 parent db7005baaf
Exists in master

oh, include the migration too

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

flashcards/migrations/0021_auto_20150603_1617.py View file @ 92f5958
  1 +# -*- coding: utf-8 -*-
  2 +from __future__ import unicode_literals
  3 +
  4 +from django.db import models, migrations
  5 +
  6 +
  7 +class Migration(migrations.Migration):
  8 +
  9 + dependencies = [
  10 + ('flashcards', '0020_merge'),
  11 + ]
  12 +
  13 + operations = [
  14 + migrations.AlterField(
  15 + model_name='userflashcardquiz',
  16 + name='blanked_word',
  17 + field=models.CharField(help_text=b'The character range which was blanked', max_length=255, blank=True),
  18 + ),
  19 + ]