Remove duplicated index

This commit is contained in:
AlanCoding
2020-03-23 22:54:04 -04:00
parent 8ba4388014
commit 653850fa6d
2 changed files with 0 additions and 5 deletions

View File

@@ -159,7 +159,6 @@ class WorkflowJobTemplateNode(WorkflowNodeBase):
app_label = 'main'
unique_together = (("identifier", "workflow_job_template"),)
indexes = [
models.Index(fields=["identifier", "workflow_job_template"]),
models.Index(fields=['identifier']),
]