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.
25 lines
653 B
25 lines
653 B
# Generated by Django 3.2 on 2023-02-23 15:39
|
|
|
|
import django.contrib.gis.db.models.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('service', '0003_auto_20230223_1829'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='ao',
|
|
name='polygon',
|
|
field=django.contrib.gis.db.models.fields.MultiPolygonField(null=True, srid=4326),
|
|
),
|
|
migrations.AddField(
|
|
model_name='rayon',
|
|
name='polygon',
|
|
field=django.contrib.gis.db.models.fields.MultiPolygonField(null=True, srid=4326),
|
|
),
|
|
]
|