Files
vrobbler/vrobbler/apps/trails/migrations/0009_trail_route_waypoint.py
Colin Powell 9bafe45951
All checks were successful
build & deploy / test (push) Successful in 1m51s
build & deploy / build-and-deploy (push) Successful in 29s
[trails] Use half way waypoints
2026-05-21 17:13:04 -04:00

24 lines
556 B
Python

# Generated by Django 4.2.29 on 2026-05-21 19:58
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("trails", "0008_alter_trail_genre"),
]
operations = [
migrations.AddField(
model_name="trail",
name="route_lat",
field=models.FloatField(blank=True, null=True),
),
migrations.AddField(
model_name="trail",
name="route_lon",
field=models.FloatField(blank=True, null=True),
),
]