Create 0028_alter_source_source_resolution.py

This commit is contained in:
tcely 2025-02-12 13:37:51 -05:00 committed by GitHub
parent 2e4ef80691
commit 091c9fed7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,17 @@
# Generated by Django 3.2.25 on 2025-02-12 18:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('sync', '0027_alter_source_sponsorblock_categories'),
]
operations = [
migrations.AlterField(
model_name='source',
name='source_resolution',
field=models.CharField(choices=[('audio', 'Audio only'), ('360p', '360p (SD)'), ('480p', '480p (SD)'), ('720p', '720p (HD)'), ('1080p', '1080p (Full HD)'), ('1440p', '1440p (2K)'), ('2160p', '4320p (8K)'), ('4320p', '4320p (8K)')], db_index=True, default='1080p', help_text='Source resolution, desired video resolution to download', max_length=8, verbose_name='source resolution'),
),
]