Skip to content

Commit

Permalink
Merge pull request #37 from hackathon-Vink-Team-3/dev
Browse files Browse the repository at this point in the history
Added migrations.
  • Loading branch information
AndreyDogadkin authored Apr 8, 2024
2 parents 2804f54 + 77e3cf1 commit c4505ae
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions chat_bot/src/apps/chat/migrations/0002_alter_message_options.py
Original file line number Diff line number Diff line change
@@ -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": "Сообщения",
},
),
]

0 comments on commit c4505ae

Please sign in to comment.