Commit 352c9933d864df6531b7df3f43de761864758dcb
1 parent
9276b7b89a
Exists in
master
Removed dupe migration
Showing 1 changed file with 0 additions and 28 deletions Inline Diff
flashcards/migrations/0006_auto_20150511_2202.py
View file @
352c993
# -*- coding: utf-8 -*- | 1 | File was deleted | ||
from __future__ import unicode_literals | 2 | |||
3 | ||||
from django.db import models, migrations | 4 | |||
import flashcards.fields | 5 | |||
6 | ||||
7 | ||||
class Migration(migrations.Migration): | 8 | |||
9 | ||||
dependencies = [ | 10 | |||
('flashcards', '0005_auto_20150510_1458'), | 11 | |||
] | 12 | |||
13 | ||||
operations = [ | 14 | |||
migrations.AlterField( | 15 | |||
model_name='flashcard', | 16 | |||
name='mask', | 17 | |||
field=flashcards.fields.MaskField(help_text=b'The mask on the card', max_length=255, null=True, blank=True), | 18 | |||
), | 19 | |||
migrations.AlterField( | 20 | |||
model_name='userflashcard', | 21 | |||
name='mask', | 22 | |||
field=flashcards.fields.MaskField(help_text=b'The user-specific mask on the card', max_length=255, null=True, blank=True), | 23 |