-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add key persons + key sites to case study
- Loading branch information
1 parent
4f1b9d9
commit c50f016
Showing
3 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
backend/case_study/migrations/0003_casestudy_key_persons_casestudy_key_sites.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Generated by Django 4.2.7 on 2024-04-15 12:31 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('person', '0014_alter_persondateofbirth_person_and_more'), | ||
('space', '0008_alter_spacedescription_source'), | ||
('case_study', '0002_casestudy_description_alter_casestudy_name_episode_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='casestudy', | ||
name='key_persons', | ||
field=models.ManyToManyField(blank=True, help_text='Key historical figures involved in this case study', to='person.historicalperson'), | ||
), | ||
migrations.AddField( | ||
model_name='casestudy', | ||
name='key_sites', | ||
field=models.ManyToManyField(blank=True, help_text='Key historical sites involved in this case study', to='space.structure'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters