diff --git a/passerelle_imio_tax_compute/migrations/0003_auto_20181119_1451.py b/passerelle_imio_tax_compute/migrations/0003_auto_20181119_1451.py new file mode 100644 index 0000000..500906c --- /dev/null +++ b/passerelle_imio_tax_compute/migrations/0003_auto_20181119_1451.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.12 on 2018-11-19 13:51 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('passerelle_imio_tax_compute', '0002_auto_20170921_1213'), + ] + + operations = [ + migrations.RemoveField( + model_name='imiotstaxcompute', + name='log_level', + ), + migrations.AlterField( + model_name='imiotstaxcompute', + name='description', + field=models.TextField(verbose_name='Description'), + ), + migrations.AlterField( + model_name='imiotstaxcompute', + name='title', + field=models.CharField(max_length=50, verbose_name='Title'), + ), + ]