generated from bisco/codex-bootstrap
18 lines
388 B
Python
18 lines
388 B
Python
# Generated by Django 5.2.3 on 2026-04-29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("shows", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="show",
|
|
name="uploaded_image",
|
|
field=models.ImageField(blank=True, upload_to="shows/"),
|
|
),
|
|
]
|