# -*- coding: utf-8 -*- # Generated by Django 1.10 on 2016-09-08 13:04 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ("comptabilite", "0011_auto_20160908_1250"), ] operations = [ migrations.AlterField( model_name="comptaline", name="bkExtractNumber", field=models.IntegerField( blank=True, default="", null=True, verbose_name="N° Extrait de compte" ), ), migrations.AlterField( model_name="comptaline", name="otherAmount", field=models.DecimalField( blank=True, decimal_places=2, max_digits=7, verbose_name="Autre montant" ), ), ]