From fd0a16b1f83c66eafdb1b62d7a74b3cc262d8a1c Mon Sep 17 00:00:00 2001 From: Klaus Thoden Date: Thu, 27 Aug 2020 10:41:11 +0200 Subject: [PATCH] Add new migration --- .../migrations/0003_auto_20200827_1035.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 eoaforthcoming/migrations/0003_auto_20200827_1035.py diff --git a/eoaforthcoming/migrations/0003_auto_20200827_1035.py b/eoaforthcoming/migrations/0003_auto_20200827_1035.py new file mode 100644 index 0000000..511ad91 --- /dev/null +++ b/eoaforthcoming/migrations/0003_auto_20200827_1035.py @@ -0,0 +1,17 @@ +# Generated by Django 3.0.9 on 2020-08-27 08:35 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('eoaforthcoming', '0002_auto_20200827_0929'), + ] + + operations = [ + migrations.AlterModelOptions( + name='forthcoming', + options={'verbose_name_plural': 'Forthcoming publications'}, + ), + ]