forked from DGNum/gestioCOF
6be65df654
K-Psul est l'interface pour l'équipe K-Fêt servant à effectuer des opérations sur les comtpes General : - Ajout d'un default sur le montant d'un groupe d'opérations K-Psul : - Création de l'interface pour enregistrer une opération
24 lines
593 B
Python
24 lines
593 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('kfet', '0008_auto_20160804_1736'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='operation',
|
|
old_name='on_checkout',
|
|
new_name='is_checkout',
|
|
),
|
|
migrations.AddField(
|
|
model_name='operation',
|
|
name='article_nb',
|
|
field=models.PositiveSmallIntegerField(default=None, null=True, blank=True),
|
|
),
|
|
]
|