Remove conflicting migration step

This commit is contained in:
Christophe Boulanger 2017-04-04 09:57:43 +02:00
parent 6731207be8
commit 3eb41b991b
1 changed files with 0 additions and 26 deletions

View File

@ -1,26 +0,0 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('passerelle_imio_ts1_datasources', '0002_destinationterm'),
]
operations = [
migrations.AddField(
model_name='destinationterm',
name='slug',
field=models.CharField(default='slug', max_length=100),
preserve_default=False,
),
migrations.AddField(
model_name='motivationterm',
name='slug',
field=models.CharField(default='slug', max_length=100),
preserve_default=False,
),
]