Files
offline-db/content/migrations/0004_videofile_file_size_bytes.py
google-labs-jules[bot] 9df2d8136b feat(auto): implemented Admin Analytics with Bandwidth Graph (#50)
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2026-01-19 12:09:00 +00:00

21 lines
511 B
Python

# Generated by Django 6.0.1 on 2026-01-19 12:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("content", "0003_fansubgroup_owner_season_anime_episode_season_and_more"),
]
operations = [
migrations.AddField(
model_name="videofile",
name="file_size_bytes",
field=models.BigIntegerField(
default=0, help_text="Total size of HLS assets in bytes"
),
),
]