forked from DGNum/gestioCOF
19 lines
549 B
Python
19 lines
549 B
Python
|
# Generated by Django 2.2.28 on 2024-07-07 11:59
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('bda', '0018_auto_20201021_1818'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='attribution',
|
||
|
name='paymenttype',
|
||
|
field=models.CharField(blank=True, choices=[('cash', 'Cash'), ('cb', 'CB'), ('cheque', 'Chèque'), ('virement', 'Virement'), ('autre', 'Autre')], max_length=8, verbose_name='Moyen de paiement'),
|
||
|
),
|
||
|
]
|