19 lines
483 B
Python
19 lines
483 B
Python
# Generated by Django 4.1.1 on 2022-11-01 07:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0019_emploees_name_cases_emploees_patronymic_cases_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='orders',
|
|
name='scan',
|
|
field=models.FileField(blank=True, upload_to='pdf/%Y/%m/%d/', verbose_name='Скан документа'),
|
|
),
|
|
]
|