diff --git a/uhepp_org/uhepp_vault/migrations/0006_plot_title.py b/uhepp_org/uhepp_vault/migrations/0006_plot_title.py
new file mode 100644
index 0000000000000000000000000000000000000000..f6c7ee37d08450fca15b1d87bbef358086ac8c40
--- /dev/null
+++ b/uhepp_org/uhepp_vault/migrations/0006_plot_title.py
@@ -0,0 +1,18 @@
+# Generated by Django 3.1.3 on 2021-01-12 11:17
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('uhepp_vault', '0005_auto_20210108_1625'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='plot',
+            name='title',
+            field=models.TextField(blank=True, null=True),
+        ),
+    ]