mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-24 05:56:37 +00:00
migration caused by #574
This commit is contained in:
parent
6c12244a25
commit
475a26d9dd
19
tubesync/sync/migrations/0026_alter_source_sub_langs.py
Normal file
19
tubesync/sync/migrations/0026_alter_source_sub_langs.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# Generated by Django 3.2.25 on 2024-12-11 12:43
|
||||||
|
|
||||||
|
import django.core.validators
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('sync', '0025_add_video_type_support'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='source',
|
||||||
|
name='sub_langs',
|
||||||
|
field=models.CharField(default='en', help_text='List of subtitles langs to download, comma-separated. Example: en,fr or all,-fr,-live_chat', max_length=30, validators=[django.core.validators.RegexValidator(message='Subtitle langs must be a comma-separated list of langs. example: en,fr or all,-fr,-live_chat', regex='^(\\-?[\\_\\.a-zA-Z-]+(,|$))+')], verbose_name='subs langs'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user