diff --git a/chat_bot/src/apps/chat/migrations/0002_alter_message_options.py b/chat_bot/src/apps/chat/migrations/0002_alter_message_options.py new file mode 100644 index 0000000..174e18a --- /dev/null +++ b/chat_bot/src/apps/chat/migrations/0002_alter_message_options.py @@ -0,0 +1,21 @@ +# Generated by Django 4.2.11 on 2024-04-08 18:41 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("chat", "0001_initial"), + ] + + operations = [ + migrations.AlterModelOptions( + name="message", + options={ + "ordering": ["created_date"], + "verbose_name": "Сообщение", + "verbose_name_plural": "Сообщения", + }, + ), + ]