diff --git a/app/contact/migrations/0002_alter_contact_options.py b/app/contact/migrations/0002_alter_contact_options.py new file mode 100644 index 0000000..57b5f47 --- /dev/null +++ b/app/contact/migrations/0002_alter_contact_options.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.6 on 2023-10-16 19:34 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('contact', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='contact', + options={'verbose_name': 'Kontakt', 'verbose_name_plural': 'Kontakte'}, + ), + ]