passerelle-montpellier-sig/passerelle_montpellier_sig/migrations/0002_montpelliersig_log_lev...

30 lines
811 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('passerelle_montpellier_sig', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='montpelliersig',
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'),
],
),
),
]