25 lines
853 B
Python
25 lines
853 B
Python
# Generated by Django 5.2.7 on 2025-11-14 20:51
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0081_remove_normalcase_age_years_normalcase_age_days'),
|
|
('generic', '0029_add_unique_constraint_supervisor_email'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='resource',
|
|
name='sites',
|
|
field=models.ManyToManyField(blank=True, help_text='The site(s) this resource is associated with (if any).', related_name='resources', to='generic.site'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='resource',
|
|
name='subspecialty',
|
|
field=models.ManyToManyField(blank=True, help_text='Subspecialty or subspecialties this resource relates to.', to='atlas.subspecialty'),
|
|
),
|
|
]
|