Files
mayan-edms/mayan/apps/sources/migrations/0017_auto_20180510_2151.py
2018-05-10 17:52:55 -04:00

21 lines
724 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2018-05-10 21:51
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('sources', '0016_auto_20170630_2040'),
]
operations = [
migrations.AlterField(
model_name='sanescanner',
name='source',
field=models.CharField(blank=True, choices=[('flatbed', 'Flatbed'), ('Automatic Document Feeder', 'Document feeder')], help_text='Selects the scan source (such as a document-feeder). If this option is not supported by your scanner, leave it blank.', max_length=32, null=True, verbose_name='Paper source'),
),
]