YouTube support.
[audio.git] / src / apiclient / migrations / 0002_youtubetoken.py
1 # Generated by Django 3.0.4 on 2020-04-06 10:41
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('apiclient', '0001_initial'),
10     ]
11
12     operations = [
13         migrations.CreateModel(
14             name='YouTubeToken',
15             fields=[
16                 ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
17                 ('token', models.TextField()),
18             ],
19         ),
20     ]