1
0
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:
AlanCoding 2020-03-23 22:54:04 -04:00
parent 8ba4388014
commit 653850fa6d
No known key found for this signature in database
GPG Key ID: FD2C3C012A72926B
2 changed files with 0 additions and 5 deletions

View File

@ -54,10 +54,6 @@ class Migration(migrations.Migration):
model_name='workflowjobnode',
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(
model_name='workflowjobtemplatenode',
index=models.Index(fields=['identifier'], name='main_workfl_identif_0cc025_idx'),

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']),
]