parent
95e952c58a
commit
0d97921999
@ -0,0 +1,27 @@
|
|||||||
|
# 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='Координаты'),
|
||||||
|
),
|
||||||
|
]
|
||||||
Loading…
Reference in new issue