# Generated by Django 3.2 on 2023-03-16 10:09 from django.db import migrations from django.db import models class Migration(migrations.Migration): dependencies = [ ('service', '0015_alter_placementpoint_status'), ] operations = [ migrations.AlterField( model_name='placementpoint', name='status', field=models.TextField(blank=True, choices=[('Pending', 'К рассмотрению'), ('Installation', 'Согласование-Установка'), ('Working', 'Работает'), ('Cancelled', 'Отменено')], null=True, verbose_name='Статус'), ), ]