Skip to content

Commit

Permalink
migrations: add missing verbose_name options from previous PR
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmarsh committed Jan 30, 2024
1 parent 0913df3 commit c8459e6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions reversion/migrations/0001_squashed_0004_auto_20160611_1202.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ class Migration(migrations.Migration):
('user', models.ForeignKey(blank=True, help_text='The user who created this revision.', null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL, verbose_name='user')),
],
options={
"ordering": ("-pk",)
"ordering": ("-pk",),
'verbose_name': 'revision',
'verbose_name_plural': 'revisions',
},
),
migrations.CreateModel(
Expand All @@ -39,7 +41,9 @@ class Migration(migrations.Migration):
('db', models.CharField(help_text='The database the model under version control is stored in.', max_length=191)),
],
options={
"ordering": ("-pk",)
"ordering": ("-pk",),
'verbose_name': 'version',
'verbose_name_plural': 'versions',
},
),
migrations.AlterUniqueTogether(
Expand Down

0 comments on commit c8459e6

Please sign in to comment.