mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
Remove duplicated index
This commit is contained in:
parent
8ba4388014
commit
653850fa6d
@ -54,10 +54,6 @@ class Migration(migrations.Migration):
|
|||||||
model_name='workflowjobnode',
|
model_name='workflowjobnode',
|
||||||
index=models.Index(fields=['identifier'], name='main_workfl_identif_efdfe8_idx'),
|
index=models.Index(fields=['identifier'], name='main_workfl_identif_efdfe8_idx'),
|
||||||
),
|
),
|
||||||
migrations.AddIndex(
|
|
||||||
model_name='workflowjobtemplatenode',
|
|
||||||
index=models.Index(fields=['identifier', 'workflow_job_template'], name='main_workfl_identif_6fda75_idx'),
|
|
||||||
),
|
|
||||||
migrations.AddIndex(
|
migrations.AddIndex(
|
||||||
model_name='workflowjobtemplatenode',
|
model_name='workflowjobtemplatenode',
|
||||||
index=models.Index(fields=['identifier'], name='main_workfl_identif_0cc025_idx'),
|
index=models.Index(fields=['identifier'], name='main_workfl_identif_0cc025_idx'),
|
||||||
|
@ -159,7 +159,6 @@ class WorkflowJobTemplateNode(WorkflowNodeBase):
|
|||||||
app_label = 'main'
|
app_label = 'main'
|
||||||
unique_together = (("identifier", "workflow_job_template"),)
|
unique_together = (("identifier", "workflow_job_template"),)
|
||||||
indexes = [
|
indexes = [
|
||||||
models.Index(fields=["identifier", "workflow_job_template"]),
|
|
||||||
models.Index(fields=['identifier']),
|
models.Index(fields=['identifier']),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user