Files
ShooterHub/apps/photos/migrations/0002_groupphoto_nullable_shotgroup.py
2026-04-02 11:24:30 +02:00

21 lines
614 B
Python

# Generated by Django 4.2.16 on 2026-03-30 13:12
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('tools', '0004_shotgroup_nullable_analysis_user_ammo'),
('photos', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='groupphoto',
name='shot_group',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='group_photos', to='tools.shotgroup', verbose_name='shot group'),
),
]