From 89febd65563a50fca8e7b2e4ef5e4775d90fdbaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 19 Nov 2018 15:00:02 +0100 Subject: [PATCH] remove log level attribute (#27162) --- .../migrations/0003_auto_20181119_1451.py | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 passerelle_imio_tax_compute/migrations/0003_auto_20181119_1451.py 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'), + ), + ]