misc: add migration for passerelle log_level addition

This commit is contained in:
Frédéric Péters 2016-04-08 17:15:49 +02:00
parent 23e0b423ee
commit b162999bd1
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('passerelle_montpellier_encombrants', '0008_auto_20151201_0440'),
]
operations = [
migrations.AddField(
model_name='encombrantsmanagement',
name='log_level',
field=models.CharField(default=b'NOTSET', max_length=10, verbose_name='Log Level', 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')]),
),
]