You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.2 KiB

# Generated by Django 3.2 on 2023-09-03 17:06
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('service', '0029_alter_placementpoint_postamat_id'),
]
operations = [
migrations.AlterModelOptions(
name='otherobjects',
options={'ordering': ('id',), 'verbose_name': 'Прочий объект', 'verbose_name_plural': 'Прочие объекты'},
),
migrations.AlterModelOptions(
name='placementpoint',
options={'ordering': ('id',), 'verbose_name': 'Точка', 'verbose_name_plural': 'Точки'},
),
migrations.AlterModelOptions(
name='post_and_pvz',
options={'ordering': ('id',), 'verbose_name': 'Постамат или ПВЗ', 'verbose_name_plural': 'Постаматы и ПВЗ'},
),
migrations.AddField(
model_name='otherobjects',
name='param3',
field=models.FloatField(blank=True, null=True),
),
migrations.AddField(
model_name='otherobjects',
name='param4',
field=models.FloatField(blank=True, null=True),
),
]