ChatServiceApp
This commit is contained in:
SDE
2023-07-31 14:56:13 +03:00
parent fafe645f37
commit 3da6289f22
2 changed files with 33 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.2.2 on 2023-07-28 18:13
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('RoutesApp', '0002_remove_route_from_country_remove_route_to_country_and_more'),
]
operations = [
migrations.AlterField(
model_name='route',
name='type_transport',
field=models.CharField(choices=[('', 'Выберите cпособ перевозки'), ('avia', 'Авиатранспорт'), ('road', 'Наземный транспорт')], default='', verbose_name='Выберите способ перевозки'),
),
]