29 lines
596 B
Python
29 lines
596 B
Python
|
# Generated by Django 4.1.3 on 2022-11-18 01:40
|
||
|
|
||
|
import functools
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
import core.uploads
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("core", "0001_initial"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name="config",
|
||
|
name="image",
|
||
|
field=models.ImageField(
|
||
|
blank=True,
|
||
|
null=True,
|
||
|
upload_to=functools.partial(
|
||
|
core.uploads.upload_namer, *("config",), **{}
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
]
|