mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 17:31:09 -05:00
25 lines
568 B
Python
25 lines
568 B
Python
# Generated by Django 5.1.2 on 2024-11-02 23:30
|
|
|
|
import media.models
|
|
import media.storage
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("media", "0004_update_photo_paths"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="photo",
|
|
name="image",
|
|
field=models.ImageField(
|
|
max_length=255,
|
|
storage=media.storage.MediaStorage(),
|
|
upload_to=media.models.photo_upload_path,
|
|
),
|
|
),
|
|
]
|