forked from DGNum/gestioCOF
24 lines
624 B
Python
24 lines
624 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('kfet', '0049_merge'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='operation',
|
||
|
name='is_checkout',
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='operation',
|
||
|
name='type',
|
||
|
field=models.CharField(choices=[('purchase', 'Achat'), ('deposit', 'Charge'), ('withdraw', 'Retrait'), ('initial', 'Initial'), ('edit', 'Édition')], max_length=8),
|
||
|
),
|
||
|
]
|