Add experimental SANE scanner source.
This commit is contained in:
25
mayan/apps/sources/migrations/0012_auto_20170205_0743.py
Normal file
25
mayan/apps/sources/migrations/0012_auto_20170205_0743.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.5 on 2017-02-05 07:43
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('sources', '0011_sanescanner'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='sanescanner',
|
||||
name='mode',
|
||||
field=models.CharField(choices=[('lineart', 'Lineart'), ('monochrome', 'Monochrome'), ('color', 'Color')], default='color', max_length=16, verbose_name='Mode'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='sanescanner',
|
||||
name='resolution',
|
||||
field=models.PositiveIntegerField(default=300, help_text='Sets the resolution of the scanned image in DPI (dots per inch).', verbose_name='Resolution'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user