More YT details.
[audio.git] / src / youtube / migrations / 0010_auto_20200520_1353.py
1 # Generated by Django 3.0.4 on 2020-05-20 13:53
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('youtube', '0009_auto_20200518_1656'),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name='youtube',
15             name='privacy_status',
16             field=models.CharField(choices=[('public', 'public'), ('unlisted', 'unlisted'), ('private', 'private')], default='unlisted', max_length=16),
17             preserve_default=False,
18         ),
19         migrations.AlterField(
20             model_name='youtube',
21             name='category',
22             field=models.IntegerField(blank=True, choices=[(27, 'Edukacja')], null=True),
23         ),
24     ]