Add migration to alter MusicVideo model options and update group detail form to use textarea for YouTube IDs

This commit is contained in:
Edgar P. Burkhart 2025-06-15 16:20:53 +02:00
parent 486f650ea6
commit cc38d72df8
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
4 changed files with 42 additions and 22 deletions

View file

@ -0,0 +1,16 @@
# Generated by Django 5.2.3 on 2025-06-15 14:19
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("game", "0022_musicgameorder_value"),
]
operations = [
migrations.AlterModelOptions(
name="musicvideo",
options={"ordering": ["blacklisted", "-date_added"]},
),
]