-
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.
Merge pull request #165 from acdh-oeaw/core-chore
Update core
- Loading branch information
Showing
30 changed files
with
999 additions
and
1,628 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
49 changes: 49 additions & 0 deletions
49
apis_ontology/migrations/0030_alter_versioninstance_options_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,49 @@ | ||
# Generated by Django 5.1.2 on 2024-11-05 04:51 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("apis_ontology", "0029_alter_versioninstance_options_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name="versioninstance", | ||
options={ | ||
"get_latest_by": ("history_date", "history_id"), | ||
"ordering": ("-history_date", "-history_id"), | ||
"verbose_name": "historical instance", | ||
"verbose_name_plural": "historical Instances", | ||
}, | ||
), | ||
migrations.AlterModelOptions( | ||
name="versionperson", | ||
options={ | ||
"get_latest_by": ("history_date", "history_id"), | ||
"ordering": ("-history_date", "-history_id"), | ||
"verbose_name": "historical person", | ||
"verbose_name_plural": "historical Persons", | ||
}, | ||
), | ||
migrations.AlterModelOptions( | ||
name="versionplace", | ||
options={ | ||
"get_latest_by": ("history_date", "history_id"), | ||
"ordering": ("-history_date", "-history_id"), | ||
"verbose_name": "historical place", | ||
"verbose_name_plural": "historical Places", | ||
}, | ||
), | ||
migrations.AlterModelOptions( | ||
name="versionwork", | ||
options={ | ||
"get_latest_by": ("history_date", "history_id"), | ||
"ordering": ("-history_date", "-history_id"), | ||
"verbose_name": "historical work", | ||
"verbose_name_plural": "historical Works", | ||
}, | ||
), | ||
] |
Oops, something went wrong.