diff --git a/src/agenda_culturel/migrations/0070_alter_contactmessage_comments_and_more.py b/src/agenda_culturel/migrations/0070_alter_contactmessage_comments_and_more.py new file mode 100644 index 0000000..69297d3 --- /dev/null +++ b/src/agenda_culturel/migrations/0070_alter_contactmessage_comments_and_more.py @@ -0,0 +1,29 @@ +# Generated by Django 4.2.9 on 2024-08-29 19:16 + +from django.db import migrations +import django_ckeditor_5.fields + + +class Migration(migrations.Migration): + + dependencies = [ + ('agenda_culturel', '0069_alter_recurrentimport_downloader'), + ] + + operations = [ + migrations.AlterField( + model_name='contactmessage', + name='comments', + field=django_ckeditor_5.fields.CKEditor5Field(blank=True, default='', help_text='Comments on the message from the moderation team', null=True, verbose_name='Comments'), + ), + migrations.AlterField( + model_name='contactmessage', + name='message', + field=django_ckeditor_5.fields.CKEditor5Field(help_text='Your message', verbose_name='Message'), + ), + migrations.AlterField( + model_name='staticcontent', + name='text', + field=django_ckeditor_5.fields.CKEditor5Field(help_text='Text as shown to the visitors', verbose_name='Content'), + ), + ] diff --git a/src/agenda_culturel/migrations/0071_alter_contactmessage_message_and_more.py b/src/agenda_culturel/migrations/0071_alter_contactmessage_message_and_more.py new file mode 100644 index 0000000..0b8fd32 --- /dev/null +++ b/src/agenda_culturel/migrations/0071_alter_contactmessage_message_and_more.py @@ -0,0 +1,24 @@ +# Generated by Django 4.2.9 on 2024-08-29 19:58 + +from django.db import migrations +import django_ckeditor_5.fields + + +class Migration(migrations.Migration): + + dependencies = [ + ('agenda_culturel', '0070_alter_contactmessage_comments_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='contactmessage', + name='message', + field=django_ckeditor_5.fields.CKEditor5Field(blank=True, help_text='Your message', verbose_name='Message'), + ), + migrations.AlterField( + model_name='staticcontent', + name='text', + field=django_ckeditor_5.fields.CKEditor5Field(blank=True, help_text='Text as shown to the visitors', verbose_name='Content'), + ), + ]