Commit 53548525806c65e9334628dac739be14c03e67cf
1 parent
fe6a4ff639
Exists in
master
Updated migrations. Pushing again to make the tests pass.
Showing 1 changed file with 29 additions and 1 deletions Side-by-side Diff
flashcards/migrations/0006_auto_20150511_2202.py
View file @
5354852
1 | +# -*- coding: utf-8 -*- | |
2 | +from __future__ import unicode_literals | |
3 | + | |
4 | +from django.db import models, migrations | |
5 | +import flashcards.fields | |
6 | + | |
7 | + | |
8 | +class Migration(migrations.Migration): | |
9 | + | |
10 | + dependencies = [ | |
11 | + ('flashcards', '0005_auto_20150510_1458'), | |
12 | + ] | |
13 | + | |
14 | + operations = [ | |
15 | + migrations.AlterField( | |
16 | + model_name='flashcard', | |
17 | + name='mask', | |
18 | + field=flashcards.fields.MaskField(help_text=b'The mask on the card', max_length=255, null=True, blank=True), | |
19 | + ), | |
20 | + migrations.AlterField( | |
21 | + model_name='userflashcard', | |
22 | + name='mask', | |
23 | + field=flashcards.fields.MaskField(help_text=b'The user-specific mask on the card', max_length=255, null=True, blank=True), | |
24 | + ), | |
25 | + migrations.DeleteModel( | |
26 | + name='FlashcardMask', | |
27 | + ), | |
28 | + ] |