faq frontend typeguards

This commit is contained in:
2025-05-15 19:50:13 +03:00
parent fd5caada23
commit ac8c3a33ed
11 changed files with 165 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.1 on 2025-05-15 16:40
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('routes', '0002_route'),
]
operations = [
migrations.AlterField(
model_name='route',
name='owner_type',
field=models.CharField(choices=[('customer', 'Заказчик'), ('mover', 'Перевозчик')], default='customer', verbose_name='Тип операции'),
),
]