feat(main): main

This commit is contained in:
2026-03-09 08:26:45 -04:00
parent f37382d2b8
commit f14454b4c8
12 changed files with 598 additions and 62 deletions

View File

@@ -0,0 +1,34 @@
# Generated by Django 6.0.3 on 2026-03-08 22:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0002_mediaitem_cache_expires_at_and_more"),
]
operations = [
migrations.AddField(
model_name="channelsourcerule",
name="schedule_block_label",
field=models.CharField(blank=True, max_length=255, null=True),
),
migrations.AddField(
model_name="scheduleblock",
name="target_content_rating",
field=models.IntegerField(
blank=True,
choices=[
(1, "TV-Y / All Children"),
(2, "TV-Y7 / Directed to Older Children"),
(3, "TV-G / General Audience"),
(4, "TV-PG / Parental Guidance Suggested"),
(5, "TV-14 / Parents Strongly Cautioned"),
(6, "TV-MA / Mature Audience Only"),
],
null=True,
),
),
]