remove log level attribute (#27162)

This commit is contained in:
Frédéric Péters 2018-11-19 15:00:32 +01:00
parent 425398fb13
commit 893e4e7a8b
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.8 on 2018-01-01 16:06
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('passerelle_montpellier_encombrants', '0010_auto_20170921_1213'),
]
operations = [
migrations.AlterField(
model_name='encombrantsmanagement',
name='log_level',
field=models.CharField(choices=[(b'NOTSET', b'NOTSET'), (b'DEBUG', b'DEBUG'), (b'INFO', b'INFO'), (b'WARNING', b'WARNING'), (b'ERROR', b'ERROR'), (b'CRITICAL', b'CRITICAL'), (b'FATAL', b'FATAL')], default=b'INFO', max_length=10, verbose_name='Log Level'),
),
]

View File

@ -0,0 +1,19 @@
# -*- 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
class Migration(migrations.Migration):
dependencies = [
('passerelle_montpellier_encombrants', '0011_auto_20180101_1706'),
]
operations = [
migrations.RemoveField(
model_name='encombrantsmanagement',
name='log_level',
),
]