[videos] Increase metdata for Youtube
All checks were successful
build / test (push) Successful in 2m1s

This commit is contained in:
2026-06-16 15:54:16 -04:00
parent 535dead7e8
commit 1624f01e11
3 changed files with 54 additions and 3 deletions

View File

@ -0,0 +1,23 @@
# Generated by Django 4.2.29 on 2026-06-16 19:33
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("videos", "0030_alter_channel_genre_alter_series_genre_and_more"),
]
operations = [
migrations.AddField(
model_name="channel",
name="custom_url",
field=models.CharField(blank=True, max_length=255, null=True),
),
migrations.AddField(
model_name="channel",
name="description",
field=models.TextField(blank=True, null=True),
),
]