passerelle/passerelle/apps/csvdatasource/migrations/0004_auto_20160407_0456.py

33 lines
868 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('csvdatasource', '0003_auto_20160316_0910'),
]
operations = [
migrations.AlterField(
model_name='csvdatasource',
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'),
],
),
preserve_default=True,
),
]