YouTube support.
[audio.git] / src / apiclient / migrations / 0002_youtubetoken.py
diff --git a/src/apiclient/migrations/0002_youtubetoken.py b/src/apiclient/migrations/0002_youtubetoken.py
new file mode 100644 (file)
index 0000000..c6772d4
--- /dev/null
@@ -0,0 +1,20 @@
+# Generated by Django 3.0.4 on 2020-04-06 10:41
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('apiclient', '0001_initial'),
+    ]
+
+    operations = [
+        migrations.CreateModel(
+            name='YouTubeToken',
+            fields=[
+                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+                ('token', models.TextField()),
+            ],
+        ),
+    ]