Files
thrillwiki_django_no_react/parks/migrations/0003_parklocation.py
2025-08-15 12:24:20 -04:00

62 lines
2.2 KiB
Python

# Generated by Django 5.1.4 on 2025-08-15 01:16
import django.contrib.gis.db.models.fields
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("parks", "0002_parkreview_parkreviewevent_parkreview_insert_insert_and_more"),
]
operations = [
migrations.CreateModel(
name="ParkLocation",
fields=[
(
"id",
models.BigAutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
(
"point",
django.contrib.gis.db.models.fields.PointField(
db_index=True, srid=4326
),
),
("street_address", models.CharField(blank=True, max_length=255)),
("city", models.CharField(db_index=True, max_length=100)),
("state", models.CharField(db_index=True, max_length=100)),
("country", models.CharField(default="USA", max_length=100)),
("postal_code", models.CharField(blank=True, max_length=20)),
("highway_exit", models.CharField(blank=True, max_length=100)),
("parking_notes", models.TextField(blank=True)),
("best_arrival_time", models.TimeField(blank=True, null=True)),
("osm_id", models.BigIntegerField(blank=True, null=True)),
(
"park",
models.OneToOneField(
on_delete=django.db.models.deletion.CASCADE,
related_name="location",
to="parks.park",
),
),
],
options={
"verbose_name": "Park Location",
"verbose_name_plural": "Park Locations",
"indexes": [
models.Index(
fields=["city", "state"], name="parks_parkl_city_7cc873_idx"
)
],
},
),
]