passerelle-montpellier-enco.../passerelle_montpellier_enco.../migrations/0011_auto_20180101_1706.py

34 lines
951 B
Python

# -*- 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',
),
),
]