-
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.
Bugfix: add subjects to the vocab field
in relations
- Loading branch information
Showing
3 changed files
with
97 additions
and
10 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
74 changes: 74 additions & 0 deletions
74
apis_ontology/migrations/0022_personstudentofperson_subject_of_teaching_vocab_and_more.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,74 @@ | ||
# Generated by Django 4.2.13 on 2024-07-03 09:03 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
( | ||
"apis_ontology", | ||
"0021_persondirectpredecessorinlineageofperson_subject_of_teaching_vocab_and_more", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="personstudentofperson", | ||
name="subject_of_teaching_vocab", | ||
field=models.ManyToManyField( | ||
blank=True, | ||
to="apis_ontology.subject", | ||
verbose_name="Subject of teaching", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="persondirectpredecessorinlineageofperson", | ||
name="subject_of_teaching", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=255, | ||
null=True, | ||
verbose_name="subject of teaching", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="persondiscipleofperson", | ||
name="subject_of_teaching", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=255, | ||
null=True, | ||
verbose_name="subject of teaching", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="personreferswithnametotheviewsofperson", | ||
name="subject_of_teaching", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=255, | ||
null=True, | ||
verbose_name="subject of teaching", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="personreferswithoutnametotheviewsofperson", | ||
name="subject_of_teaching", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=255, | ||
null=True, | ||
verbose_name="subject of teaching", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="personstudentofperson", | ||
name="subject_of_teaching", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=255, | ||
null=True, | ||
verbose_name="subject of teaching", | ||
), | ||
), | ||
] |
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