Skip to content

Commit

Permalink
Внесла правки согласно ТЗ.
Browse files Browse the repository at this point in the history
  • Loading branch information
Olga-Zholudeva committed Aug 31, 2023
1 parent 350dee4 commit fc7f973
Showing 1 changed file with 38 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Generated by Django 4.2.4 on 2023-08-31 07:33

from django.db import migrations, models


class Migration(migrations.Migration):
"""Migrations for bot."""

dependencies = [
("bot", "0004_alter_coordinator_options_coordinator_is_chief"),
]

operations = [
migrations.AlterField(
model_name="fundprogram",
name="short_description",
field=models.CharField(
help_text="Введите название кнопки в боте для данной программы",
max_length=20,
verbose_name="Текст на кнопке",
),
),
migrations.AlterField(
model_name="question",
name="question_type",
field=models.CharField(
choices=[
("Юридическая помощь", "Юридическая помощь"),
("Социальная помощь", "Социальная помощь"),
("Психологическая помощь", "Психологическая помощь"),
],
default="Юридическая помощь",
help_text="Выберите тип помощи для вопроса",
max_length=100,
verbose_name="Тип вопроса",
),
),
]

0 comments on commit fc7f973

Please sign in to comment.