[video] Update how we get video metadata for YT add

This commit is contained in:
2025-01-20 09:13:18 -05:00
parent 89e5455b29
commit c109ed79eb
13 changed files with 317 additions and 159 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.2.16 on 2025-01-20 04:16
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("videos", "0020_channel_youtube_id"),
]
operations = [
migrations.AddField(
model_name="video",
name="upload_date",
field=models.DateField(blank=True, null=True),
),
]