Changed Image model path to method.

This commit is contained in:
Miguel Astor
2026-03-24 15:39:09 -04:00
parent 5ec793b47d
commit 13ab55d1d3
2 changed files with 24 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 6.0.3 on 2026-03-24 19:38
import viewer.models
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("viewer", "0001_initial"),
]
operations = [
migrations.AlterField(
model_name="image",
name="path",
field=models.FilePathField(path=viewer.models.get_gallery_root),
),
]