Files
mayan-edms/mayan/apps/sources/migrations/0014_auto_20170206_0722.py
Roberto Rosario 219c82630a Code cleanups.
Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2017-06-30 17:48:07 -04:00

41 lines
1.4 KiB
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-02-06 07:22
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('sources', '0013_auto_20170206_0710'),
]
operations = [
migrations.AlterField(
model_name='sanescanner',
name='adf_mode',
field=models.CharField(
blank=True, choices=[
('simplex', 'Simplex'), ('duplex', 'Duplex')
], default='simplex', help_text='Selects the document feeder '
'mode (simplex/duplex). If this option is not supported by '
'your scanner, leave it blank.', max_length=16,
verbose_name='ADF mode'
),
),
migrations.AlterField(
model_name='sanescanner',
name='source',
field=models.CharField(
blank=True, choices=[
('flatbed', 'Flatbed'),
('"Automatic Document Feeder"', 'Document feeder')
], default='flatbed', 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,
verbose_name='Paper source'
),
),
]