1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.9 on 2018-02-08 19:22
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('banking', '0008_paymentupdate_month_day'),
- ]
- operations = [
- migrations.AlterField(
- model_name='paymentupdate',
- name='payment_method',
- 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'),
- ),
- ]
|