Skip to content

Commit

Permalink
Merge pull request #1747 from MTG/missing_migration_sound_type
Browse files Browse the repository at this point in the history
add missing migration after #1712
  • Loading branch information
ffont authored Jan 11, 2024
2 parents 30a3f1d + c4c5c00 commit 9c73740
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions sounds/migrations/0052_alter_sound_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.23 on 2024-01-02 21:58

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('sounds', '0051_auto_20230929_1428'),
]

operations = [
migrations.AlterField(
model_name='sound',
name='type',
field=models.CharField(choices=[('wav', 'Wave'), ('ogg', 'Ogg Vorbis'), ('aiff', 'AIFF'), ('mp3', 'Mp3'), ('flac', 'Flac'), ('m4a', 'M4a'), ('wv', 'WavPack')], db_index=True, max_length=4),
),
]

0 comments on commit 9c73740

Please sign in to comment.