feat(main): main
This commit is contained in:
@@ -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,
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user