prediction templates
This commit is contained in:
parent
9bf24b072b
commit
576db57d99
4 changed files with 65 additions and 5 deletions
|
|
@ -0,0 +1,47 @@
|
|||
# Generated by Django 4.2.23 on 2025-07-08 10:17
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('api', '0003_prediction_rate_profile_prediction_start_point_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='preditctiontemplate',
|
||||
name='template_data',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='preditctiontemplate',
|
||||
name='dataset',
|
||||
field=models.CharField(default='', max_length=50),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='preditctiontemplate',
|
||||
name='description',
|
||||
field=models.TextField(blank=True, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='preditctiontemplate',
|
||||
name='flight_parameters',
|
||||
field=models.JSONField(blank=True, default=dict),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='preditctiontemplate',
|
||||
name='model',
|
||||
field=models.CharField(default='', max_length=50),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='preditctiontemplate',
|
||||
name='prediction_mode',
|
||||
field=models.CharField(default='', max_length=50),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='savedrateprofile',
|
||||
name='type',
|
||||
field=models.CharField(default='ascent', max_length=50),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue