Skip to content

Commit

Permalink
feat(apis_relations): add missing migrations
Browse files Browse the repository at this point in the history
Those migrations are a consequence of the change in
0c62e85 where the verbose_name and
verbose_name_plural in the VersionMixin where dropped.
  • Loading branch information
b1rger committed Sep 18, 2024
1 parent a8789a6 commit 39a1dcd
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 5.1 on 2024-09-18 06:35

from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
("apis_relations", "0006_versiontemptriple"),
]

operations = [
migrations.AlterModelOptions(
name="versiontemptriple",
options={
"get_latest_by": ("history_date", "history_id"),
"ordering": ("-history_date", "-history_id"),
"verbose_name": "historical temp triple",
"verbose_name_plural": "historical temp triples",
},
),
]

0 comments on commit 39a1dcd

Please sign in to comment.