Commit 352c9933d864df6531b7df3f43de761864758dcb

Authored by Andrew Buss
1 parent 9276b7b89a
Exists in master

Removed dupe migration

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

flashcards/migrations/0006_auto_20150511_2202.py View file @ 352c993
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   - ]