Off by one error.
[audio.git] / src / archive / migrations / 0015_auto_20200529_1430.py
1 # Generated by Django 3.0.6 on 2020-05-29 14:30
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('archive', '0014_remove_audiobook_parts_count'),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name='audiobook',
15             name='youtube_queued',
16             field=models.DateTimeField(blank=True, null=True),
17         ),
18         migrations.AddField(
19             model_name='audiobook',
20             name='youtube_volume',
21             field=models.CharField(blank=True, help_text='If set, audiobooks with the save value will be published as single YouTube video.', max_length=1000, verbose_name='Volume name for YouTube'),
22         ),
23     ]