Skip to content

Commit

Permalink
migrations: add missing verbose_name options from PR etianen#956
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmarsh committed Jan 30, 2024
1 parent 4b43856 commit 14d0d56
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions reversion/migrations/0001_squashed_0004_auto_20160611_1202.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ class Migration(migrations.Migration):
],
options={
"ordering": ("-pk",)
'verbose_name': 'revision',
'verbose_name_plural': 'revisions',
},
),
migrations.CreateModel(
Expand All @@ -40,6 +42,8 @@ class Migration(migrations.Migration):
],
options={
"ordering": ("-pk",)
'verbose_name': 'version',
'verbose_name_plural': 'versions',
},
),
migrations.AlterUniqueTogether(
Expand Down

0 comments on commit 14d0d56

Please sign in to comment.