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