We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e89e7a5 commit ffbbe48Copy full SHA for ffbbe48
1 file changed
opendrift_leeway_webgui/leeway/migrations/0009_leewaysimulation_geojson.py
@@ -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