Skip to content

Commit

Permalink
feat(sample_project): 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 39a1dcd commit 49c21bc
Showing 1 changed file with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Generated by Django 5.1 on 2024-09-18 06:35

from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
("sample_project", "0002_iscousinof_ispartof_issiblingof_livesin"),
]

operations = [
migrations.AlterModelOptions(
name="versiongroup",
options={
"get_latest_by": ("history_date", "history_id"),
"ordering": ("-history_date", "-history_id"),
"verbose_name": "historical group",
"verbose_name_plural": "historical groups",
},
),
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",
},
),
]

0 comments on commit 49c21bc

Please sign in to comment.