YouTube support.
[audio.git] / src / youtube / migrations / 0001_initial.py
1 # Generated by Django 3.0.4 on 2020-03-30 17:58
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     initial = True
9
10     dependencies = [
11     ]
12
13     operations = [
14         migrations.CreateModel(
15             name='YouTube',
16             fields=[
17                 ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
18                 ('client_secrets', models.TextField(blank=True)),
19                 ('oauth2_storage', models.TextField(blank=True, editable=False)),
20                 ('title_template', models.CharField(blank=True, max_length=1024)),
21                 ('description_template', models.TextField(blank=True)),
22                 ('category', models.IntegerField(null=True)),
23                 ('intro_card', models.FileField(blank=True, upload_to='')),
24                 ('intro_card_length', models.FloatField(null=True)),
25                 ('card', models.FileField(blank=True, upload_to='')),
26                 ('loop_video', models.FileField(blank=True, upload_to='')),
27                 ('outro_card', models.FileField(blank=True, upload_to='')),
28                 ('outro_card_length', models.FloatField(null=True)),
29             ],
30             options={
31                 'verbose_name': 'YouTube configuration',
32                 'verbose_name_plural': 'YouTube configurations',
33             },
34         ),
35     ]