Skip to content
Snippets Groups Projects
Commit c474d218 authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Add workflow selection

parent b4ea5f4e
No related branches found
No related tags found
2 merge requests!8update dev-nico to make small changes,!7Add script csv gen
Pipeline #34325 failed
......@@ -81,7 +81,7 @@ class DataProductFilter(models.Model):
class ATDBProcessingSite(models.Model):
name = models.CharField(primary_key=True)
name = models.CharField(primary_key=True, max_length=100)
url = models.URLField()
......@@ -90,6 +90,7 @@ class WorkSpecification(models.Model):
created_by = models.ForeignKey(User, on_delete=models.DO_NOTHING, null=True)
filters = models.JSONField(null=True)
inputs = models.JSONField(null=True)
selected_workflow = models.CharField(max_length=500, null=True)
related_tasks = ArrayField(models.IntegerField(), null=True)
is_ready = models.BooleanField(default=False)
is_defined = models.BooleanField(default=False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment