Files
PYTV/core/migrations/0004_channel_fallback_collection.py
2026-03-09 13:29:23 -04:00

26 lines
672 B
Python

# Generated by Django 6.0.3 on 2026-03-09 12:36
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0003_channelsourcerule_schedule_block_label_and_more"),
]
operations = [
migrations.AddField(
model_name="channel",
name="fallback_collection",
field=models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="fallback_for_channels",
to="core.mediacollection",
),
),
]