From cb65893364d2a916e0462022a6ec43afada4c175 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20H=C3=A4ttasch?= <benjamin.haettasch@fachschaft.informatik.tu-darmstadt.de> Date: Wed, 17 Aug 2022 19:43:08 +0200 Subject: [PATCH] Add missing migration for changed AK notes field help text --- AKModel/migrations/0051_ak_notes_help_text.py | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 AKModel/migrations/0051_ak_notes_help_text.py diff --git a/AKModel/migrations/0051_ak_notes_help_text.py b/AKModel/migrations/0051_ak_notes_help_text.py new file mode 100644 index 00000000..43c5833a --- /dev/null +++ b/AKModel/migrations/0051_ak_notes_help_text.py @@ -0,0 +1,23 @@ +# Generated by Django 3.1.8 on 2022-08-17 17:41 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('AKModel', '0050_message_event_reference'), + ] + + operations = [ + migrations.AlterField( + model_name='ak', + name='notes', + field=models.TextField(blank=True, help_text='Notes to organizers. These are public. For private notes, please use the button for private messages on the detail page of this AK (after creation/editing).', verbose_name='Organizational Notes'), + ), + migrations.AlterField( + model_name='historicalak', + name='notes', + field=models.TextField(blank=True, help_text='Notes to organizers. These are public. For private notes, please use the button for private messages on the detail page of this AK (after creation/editing).', verbose_name='Organizational Notes'), + ), + ] -- GitLab