mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-09 19:36:27 +00:00
[printer] New migration
This commit is contained in:
parent
ae58b88707
commit
2c4dc22b31
1 changed files with 22 additions and 0 deletions
22
printer/migrations/0003_auto_20180803_0854.py
Normal file
22
printer/migrations/0003_auto_20180803_0854.py
Normal file
|
@ -0,0 +1,22 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.7 on 2018-08-03 06:54
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import printer.models
|
||||
import printer.validators
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('printer', '0002_auto_20180628_2032'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='jobwithoptions',
|
||||
name='file',
|
||||
field=models.FileField(upload_to=printer.models.user_printing_path, validators=[printer.validators.FileValidator(allowed_types=['application/pdf'], max_size=26214400)]),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue