22 lines
710 B
Python
22 lines
710 B
Python
# Generated by Django 3.2.15 on 2022-12-28 20:33
|
|
|
|
import django.core.files.storage
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
import sync.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sync', '0013_fix_elative_media_file'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='media',
|
|
name='media_file',
|
|
field=models.FileField(blank=True, help_text='Media file', max_length=255, null=True, storage=django.core.files.storage.FileSystemStorage(base_url='/media-data/', location=str(settings.DOWNLOAD_ROOT)), upload_to=sync.models.get_media_file_path, verbose_name='media file'),
|
|
),
|
|
]
|