passerelle-grandlyon-elyx/grandlyon_elyx/migrations/0003_auto_20181112_1722.py

24 lines
726 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('grandlyon_elyx', '0002_auto_20180828_1339'),
]
operations = [
migrations.RemoveField(
model_name='grandlyonelyx',
name='wsdl_url',
),
migrations.AlterField(
model_name='grandlyonelyx',
name='log_level',
field=models.CharField(default=b'INFO', 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')]),
),
]