mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-23 05:26:37 +00:00
19 lines
554 B
Python
19 lines
554 B
Python
# Generated by nothing. Done manually by InterN0te on 2023-12-10 16:36
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sync', '0020_auto_20231024_1825'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='source',
|
|
name='copy_channel_images',
|
|
field=models.BooleanField(default=False, help_text='Copy channel banner and avatar. These may be detected and used by some media servers', verbose_name='copy channel images'),
|
|
),
|
|
]
|