Add migration to alter MusicVideo model options and update group detail form to use textarea for YouTube IDs
This commit is contained in:
parent
486f650ea6
commit
cc38d72df8
4 changed files with 42 additions and 22 deletions
16
game/migrations/0023_alter_musicvideo_options.py
Normal file
16
game/migrations/0023_alter_musicvideo_options.py
Normal 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"]},
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue