-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add correct verbose_name and verbose_name_plural to Audio, DeletedAud…
…io, and SensitiveAudio models (#4655)
- Loading branch information
1 parent
c2e0082
commit b8fdf7a
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
api/api/migrations/0071_alter_audio_options_alter_deletedaudio_options_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'}, | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters