From c4c5c003c11e8d82d6589a6fe5bc83e9c6a966ea Mon Sep 17 00:00:00 2001 From: Bomme <13520622+Bomme@users.noreply.github.com> Date: Tue, 2 Jan 2024 23:50:13 +0100 Subject: [PATCH] add missing migration after #1712 --- sounds/migrations/0052_alter_sound_type.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sounds/migrations/0052_alter_sound_type.py diff --git a/sounds/migrations/0052_alter_sound_type.py b/sounds/migrations/0052_alter_sound_type.py new file mode 100644 index 000000000..44541dbd4 --- /dev/null +++ b/sounds/migrations/0052_alter_sound_type.py @@ -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), + ), + ]