mirror of https://gitlab.federez.net/re2o/re2o
committed by
root
2 changed files with 31 additions and 1 deletions
@ -0,0 +1,23 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.7 on 2018-10-12 10:42 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
import django.core.files.storage |
||||
|
from django.db import migrations, models |
||||
|
import printer.utils |
||||
|
import printer.validators |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('printer', '0007_auto_20180925_1351'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='jobwithoptions', |
||||
|
name='file', |
||||
|
field=models.FileField(storage=django.core.files.storage.FileSystemStorage(location='/var/impressions'), upload_to=printer.utils.user_printing_path, validators=[printer.validators.FileValidator(allowed_types=['application/pdf'], max_size=26214400)]), |
||||
|
), |
||||
|
] |
||||
Loading…
Reference in new issue