21 lines
464 B
Python
21 lines
464 B
Python
# Generated by Django 4.2.19 on 2025-07-20 20:54
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("music", "0026_album_alt_names"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="track",
|
|
name="albums",
|
|
field=models.ManyToManyField(
|
|
blank=True, null=True, related_name="tracks", to="music.album"
|
|
),
|
|
),
|
|
]
|