Skip to content

Commit

Permalink
add missing migration after #1712
Browse files Browse the repository at this point in the history
  • Loading branch information
Bomme committed Jan 2, 2024
1 parent f50789d commit c4c5c00
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 c4c5c00

Please sign in to comment.