More automation for YouTube: volume management (WiP).
[audio.git] / src / archive / migrations / 0011_audiobook_slug.py
diff --git a/src/archive/migrations/0011_audiobook_slug.py b/src/archive/migrations/0011_audiobook_slug.py
new file mode 100644 (file)
index 0000000..520a0d8
--- /dev/null
@@ -0,0 +1,19 @@
+# Generated by Django 3.0.6 on 2020-05-29 11:57
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('archive', '0010_populate_license'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='audiobook',
+            name='slug',
+            field=models.SlugField(default='', max_length=120),
+            preserve_default=False,
+        ),
+    ]