-
Jamesie Pic a rédigé
Also: - code was PEP8'ed - tests were added, - untested code was removed, - setup.py was fixed and requirements.txt is gone,
Jamesie Pic a rédigéAlso: - code was PEP8'ed - tests were added, - untested code was removed, - setup.py was fixed and requirements.txt is gone,
0005_make_dossier_reference_unique.py 434 o
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('representatives_votes', '0004_auto_20150709_0819'),
]
operations = [
migrations.AlterField(
model_name='dossier',
name='reference',
field=models.CharField(unique=True, max_length=200),
),
]