Files
penracourses/atlas/migrations/0031_seriesimage_replaced.py
T
Ross 1809eed93e .
2023-12-18 09:26:23 +00:00

20 lines
603 B
Python

# 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'),
),
]