Skip to content

Commit

Permalink
bugfix: add migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
gythaogg committed Jul 3, 2024
1 parent 8b02cfb commit aaa5f5a
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Generated by Django 4.2.13 on 2024-07-03 09:54

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
(
"apis_ontology",
"0023_remove_persondirectpredecessorinlineageofperson_subject_of_teaching_and_more",
),
]

operations = [
migrations.AddField(
model_name="personactiveatplace",
name="subject_of_teaching_vocab",
field=models.ManyToManyField(
blank=True,
to="apis_ontology.subject",
verbose_name="Subject of teaching",
),
),
]

0 comments on commit aaa5f5a

Please sign in to comment.