website/conservancy/podjango/migrations/0005_podcast_long_description.py
Ben Sturmfels 956f8c6fda
podjango: Add "Podcast" model to support multiple podcasts
Each Cast (episode) can belong to one or more Podcast, allowing episodes to be
shared between podcasts. This enables us introductory episodes to be delivered
in their own feed, but also included in the main "The Corresponding Source"
feed.

This required adding an additional `podcast_slug` argument to most views. The
date archive views were dropped because they're not linked to from anywhere.

Added a `podcasts` view as an index of all available Podcasts.
2024-04-25 15:32:24 +10:00

18 lines
425 B
Python

# Generated by Django 4.2.11 on 2024-04-25 01:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('podjango', '0004_alter_cast_options_alter_casttag_options_and_more'),
]
operations = [
migrations.AddField(
model_name='podcast',
name='long_description',
field=models.TextField(blank=True),
),
]