misc: add migration for passerelle log_level addition

This commit is contained in:
Frédéric Péters 2016-04-08 17:15:09 +02:00
parent 298de7e0dd
commit 2eca594b1c
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_imio_liege_lisrue', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='imioliegelisrue',
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')]),
),
]