From 33a33daa83d2e497038bea60b5c85fae2cc5ed0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Sat, 20 Jun 2020 19:53:28 +0200 Subject: [PATCH] forgotten migration --- .../migrations/0008_auto_20200620_1952.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 sdbs_infra/dashboard/migrations/0008_auto_20200620_1952.py diff --git a/sdbs_infra/dashboard/migrations/0008_auto_20200620_1952.py b/sdbs_infra/dashboard/migrations/0008_auto_20200620_1952.py new file mode 100644 index 0000000..be45aba --- /dev/null +++ b/sdbs_infra/dashboard/migrations/0008_auto_20200620_1952.py @@ -0,0 +1,17 @@ +# Generated by Django 3.0.7 on 2020-06-20 17:52 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('dashboard', '0007_link'), + ] + + operations = [ + migrations.AlterModelOptions( + name='link', + options={'ordering': ('order',), 'verbose_name': 'Important Link', 'verbose_name_plural': 'Important Links'}, + ), + ]