0009_auto_20180208_2022.py 619 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.9 on 2018-02-08 19:22
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('banking', '0008_paymentupdate_month_day'),
  8. ]
  9. operations = [
  10. migrations.AlterField(
  11. model_name='paymentupdate',
  12. name='payment_method',
  13. field=models.IntegerField(choices=[(2, 'Prélèvement'), (3, 'Virement'), (4, 'Liquide'), (5, 'Facture'), (1, 'Gratuit'), (0, 'Arrêt')], default=2, verbose_name='Méthode de paiement'),
  14. ),
  15. ]