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.
28 lines
706 B
28 lines
706 B
# Generated by Django 3.2 on 2023-02-18 16:27
|
|
|
|
import django.contrib.gis.db.models.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('service', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='placementpoint',
|
|
name='lat',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='placementpoint',
|
|
name='lon',
|
|
),
|
|
migrations.AddField(
|
|
model_name='placementpoint',
|
|
name='geometry',
|
|
field=django.contrib.gis.db.models.fields.PointField(null=True, srid=4326, verbose_name='Координаты'),
|
|
),
|
|
]
|