mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 18:40:01 -03:30
add indexes for new event types
not sure why this didn't happen in the original migration that was generated - may be related to differences in behavior across Django versions?
This commit is contained in:
parent
21f0c1d1d7
commit
79a29ebcc8
@ -78,6 +78,18 @@ class Migration(migrations.Migration):
|
||||
'ordering': ('-pk',),
|
||||
},
|
||||
),
|
||||
migrations.AlterIndexTogether(
|
||||
name='inventoryupdateevent',
|
||||
index_together=set([('inventory_update', 'start_line'), ('inventory_update', 'uuid'), ('inventory_update', 'end_line')]),
|
||||
),
|
||||
migrations.AlterIndexTogether(
|
||||
name='projectupdateevent',
|
||||
index_together=set([('project_update', 'event'), ('project_update', 'end_line'), ('project_update', 'start_line'), ('project_update', 'uuid')]),
|
||||
),
|
||||
migrations.AlterIndexTogether(
|
||||
name='systemjobevent',
|
||||
index_together=set([('system_job', 'end_line'), ('system_job', 'uuid'), ('system_job', 'start_line')]),
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='unifiedjob',
|
||||
name='result_stdout_file',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user