feat(main): main
This commit is contained in:
25
core/migrations/0004_channel_fallback_collection.py
Normal file
25
core/migrations/0004_channel_fallback_collection.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# 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",
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user