add XML NFO file writing support, rework media cleanup deletion, resolves #11

This commit is contained in:
meeb
2020-12-19 16:00:37 +11:00
parent 8f4b09f346
commit 410906ad8e
10 changed files with 327 additions and 39 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.1.4 on 2020-12-19 03:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('sync', '0004_source_media_format'),
]
operations = [
migrations.AlterField(
model_name='source',
name='source_type',
field=models.CharField(choices=[('c', 'YouTube channel'), ('i', 'YouTube channel by ID'), ('p', 'YouTube playlist')], db_index=True, default='c', help_text='Source type', max_length=1, verbose_name='source type'),
),
]