Skip to content

Commit ffbbe48

Browse files
committed
Add geojson migration
1 parent e89e7a5 commit ffbbe48

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by Django 5.2.7 on 2026-02-20 17:35
2+
3+
import opendrift_leeway_webgui.leeway.models
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [("leeway", "0008_leewaysimulation_traceback")]
10+
11+
operations = [
12+
migrations.AddField(
13+
model_name="leewaysimulation",
14+
name="geojson",
15+
field=models.FileField(
16+
null=True,
17+
storage=opendrift_leeway_webgui.leeway.models.simulation_storage,
18+
upload_to="",
19+
verbose_name="GeoJSON of simulated trajectories",
20+
),
21+
)
22+
]

0 commit comments

Comments
 (0)