22 lines
545 B
Python
22 lines
545 B
Python
|
|
# Generated by Django 6.0.3 on 2026-03-10 12:44
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
("core", "0005_mediasource_max_age_days_and_more"),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name="channel",
|
||
|
|
name="requires_auth",
|
||
|
|
field=models.BooleanField(
|
||
|
|
default=False,
|
||
|
|
help_text="If True, only signed-in users can stream or fetch schedules for this channel.",
|
||
|
|
),
|
||
|
|
),
|
||
|
|
]
|