# Generated by Django 4.1.4 on 2023-12-18 09:26 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('atlas', '0030_alter_condition_parent_alter_condition_primary_and_more'), ] operations = [ migrations.AddField( model_name='seriesimage', name='replaced', field=models.ForeignKey(blank=True, help_text='Reference to the object that has replaced this one.', null=True, on_delete=django.db.models.deletion.SET_NULL, to='atlas.seriesimage'), ), ]