srg/artsurvey/migrations/0150_alter_upload_filefield.py
2024-04-26 12:43:00 +03:00

21 lines
628 B
Python

# Generated by Django 3.2.12 on 2022-04-13 14:44
import artsurvey.models
import django.core.files.storage
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('artsurvey', '0149_alter_upload_artsources'),
]
operations = [
migrations.AlterField(
model_name='upload',
name='filefield',
field=models.FileField(storage=django.core.files.storage.FileSystemStorage(location='/export/django/Uploads/artsurvey'), upload_to=artsurvey.models.upload_filename, validators=[artsurvey.models.validate_upload]),
),
]