Skip to content

Commit

Permalink
Add correct verbose_name and verbose_name_plural to Audio, DeletedAud…
Browse files Browse the repository at this point in the history
…io, and SensitiveAudio models (#4655)
  • Loading branch information
dryruffian committed Sep 25, 2024
1 parent c2e0082 commit b8fdf7a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Generated by Django 4.2.11 on 2024-09-25 16:38

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('api', '0070_throttledapplication_allowed_origins_and_more'),
]

operations = [
migrations.AlterModelOptions(
name='audio',
options={'ordering': ['-created_on'], 'verbose_name': 'audio track', 'verbose_name_plural': 'audio tracks'},
),
migrations.AlterModelOptions(
name='deletedaudio',
options={'verbose_name': 'deleted audio track', 'verbose_name_plural': 'deleted audio tracks'},
),
migrations.AlterModelOptions(
name='sensitiveaudio',
options={'verbose_name': 'sensitive audio track', 'verbose_name_plural': 'sensitive audio tracks'},
),
]
2 changes: 1 addition & 1 deletion api/latest_migrations/api
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# If you have a merge conflict in this file, it means you need to run:
# manage.py makemigrations --merge
# in order to resolve the conflict between migrations.
0070_throttledapplication_allowed_origins_and_more
0071_alter_audio_options_alter_deletedaudio_options_and_more

0 comments on commit b8fdf7a

Please sign in to comment.