add the third party migration file
This commit is contained in:
parent
196c9c1702
commit
6f6af81b80
|
@ -0,0 +1,42 @@
|
||||||
|
# Generated by Django 4.2.9 on 2024-12-21 20:02
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("music", "0059_remove_album_artist_remove_track_artist_artistcredit_and_more"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="upload",
|
||||||
|
name="third_party_provider",
|
||||||
|
field=models.CharField(blank=True, max_length=100, null=True),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="uploadversion",
|
||||||
|
name="mimetype",
|
||||||
|
field=models.CharField(
|
||||||
|
choices=[
|
||||||
|
("audio/mp3", "mp3"),
|
||||||
|
("audio/mpeg3", "mp3"),
|
||||||
|
("audio/x-mp3", "mp3"),
|
||||||
|
("audio/mpeg", "mp3"),
|
||||||
|
("video/ogg", "ogg"),
|
||||||
|
("audio/ogg", "ogg"),
|
||||||
|
("audio/opus", "opus"),
|
||||||
|
("audio/x-m4a", "aac"),
|
||||||
|
("audio/x-m4a", "m4a"),
|
||||||
|
("audio/m4a", "m4a"),
|
||||||
|
("audio/x-flac", "flac"),
|
||||||
|
("audio/flac", "flac"),
|
||||||
|
("audio/aiff", "aif"),
|
||||||
|
("audio/x-aiff", "aif"),
|
||||||
|
("audio/aiff", "aiff"),
|
||||||
|
("audio/x-aiff", "aiff"),
|
||||||
|
],
|
||||||
|
max_length=50,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue