You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
468 B

# Generated by Django 5.2.12 on 2026-06-08 14:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('podcast', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='podcast',
name='collections',
field=models.ManyToManyField(blank=True, related_name='podcasts', to='podcast.podcastcollection', verbose_name='collections'),
),
]