mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 04:56:45 +00:00
21 lines
591 B
Python
21 lines
591 B
Python
# Generated by Django 3.0.5 on 2020-05-21 03:50
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
import report.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('report', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='reporttemplate',
|
|
name='template',
|
|
field=models.FileField(help_text='Report template file', upload_to=report.models.rename_template, validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['html', 'tex'])]),
|
|
),
|
|
]
|