0008_auto_20170802_2021.py 527 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('billing', '0007_auto_20170801_1530'),
  7. ]
  8. operations = [
  9. migrations.AlterField(
  10. model_name='invoice',
  11. name='status',
  12. field=models.CharField(default='open', max_length=50, verbose_name='statut', choices=[('open', '\xc0 payer'), ('closed', 'R\xe9gl\xe9e'), ('trouble', 'Litige')]),
  13. ),
  14. ]