From ddc5b3433e66cd14951343fc0adbcc7330470cf7 Mon Sep 17 00:00:00 2001 From: Frank Sauerburger <frank@sauerburger.com> Date: Wed, 13 Jan 2021 10:52:38 +0100 Subject: [PATCH] Add missing migration --- .../uhepp_vault/migrations/0006_plot_title.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 uhepp_org/uhepp_vault/migrations/0006_plot_title.py 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 0000000..f6c7ee3 --- /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), + ), + ] -- GitLab