21 lines
628 B
Python
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]),
|
|
),
|
|
]
|