mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 10:51:09 -05:00
28 lines
698 B
Python
28 lines
698 B
Python
# Generated by Django 5.1.2 on 2024-11-04 22:30
|
|
|
|
import django.contrib.gis.db.models.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("location", "0003_alter_historicallocation_city_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="location",
|
|
name="point",
|
|
field=django.contrib.gis.db.models.fields.PointField(
|
|
blank=True,
|
|
help_text="Geographic coordinates as a Point",
|
|
null=True,
|
|
srid=4326,
|
|
),
|
|
),
|
|
migrations.DeleteModel(
|
|
name="HistoricalLocation",
|
|
),
|
|
]
|