21 lines
614 B
Python
21 lines
614 B
Python
# Generated by Django 5.0.2 on 2024-05-18 07:49
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0052_alter_casecollection_end_date_and_more'),
|
|
('rcr', '0022_remove_item_radiology_category'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='item',
|
|
name='radiology_condition',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='rcr_migration_item', to='atlas.condition'),
|
|
),
|
|
]
|