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

29 lines
873 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-02-06 08:35
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('sources', '0014_auto_20170206_0722'),
]
operations = [
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'
),
),
]