make slug unique (#13053)

This commit is contained in:
Serghei Mihai 2017-09-21 12:13:32 +02:00
parent e7dcb4513f
commit 986db90e35
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('passerelle_imio_extra_fees', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='extrafees',
name='slug',
field=models.SlugField(unique=True),
),
]