mirror of
https://github.com/ansible/awx.git
synced 2026-05-08 01:47:35 -02:30
add migrations for Unpartitioned{Job}Event proxy models
This commit is contained in:
@@ -100,4 +100,54 @@ class Migration(migrations.Migration):
|
|||||||
name='job',
|
name='job',
|
||||||
field=models.ForeignKey(editable=False, null=True, on_delete=models.deletion.SET_NULL, related_name='job_events', to='main.Job'),
|
field=models.ForeignKey(editable=False, null=True, on_delete=models.deletion.SET_NULL, related_name='job_events', to='main.Job'),
|
||||||
),
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='UnpartitionedAdHocCommandEvent',
|
||||||
|
fields=[],
|
||||||
|
options={
|
||||||
|
'proxy': True,
|
||||||
|
'indexes': [],
|
||||||
|
'constraints': [],
|
||||||
|
},
|
||||||
|
bases=('main.adhoccommandevent',),
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='UnpartitionedInventoryUpdateEvent',
|
||||||
|
fields=[],
|
||||||
|
options={
|
||||||
|
'proxy': True,
|
||||||
|
'indexes': [],
|
||||||
|
'constraints': [],
|
||||||
|
},
|
||||||
|
bases=('main.inventoryupdateevent',),
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='UnpartitionedJobEvent',
|
||||||
|
fields=[],
|
||||||
|
options={
|
||||||
|
'proxy': True,
|
||||||
|
'indexes': [],
|
||||||
|
'constraints': [],
|
||||||
|
},
|
||||||
|
bases=('main.jobevent',),
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='UnpartitionedProjectUpdateEvent',
|
||||||
|
fields=[],
|
||||||
|
options={
|
||||||
|
'proxy': True,
|
||||||
|
'indexes': [],
|
||||||
|
'constraints': [],
|
||||||
|
},
|
||||||
|
bases=('main.projectupdateevent',),
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='UnpartitionedSystemJobEvent',
|
||||||
|
fields=[],
|
||||||
|
options={
|
||||||
|
'proxy': True,
|
||||||
|
'indexes': [],
|
||||||
|
'constraints': [],
|
||||||
|
},
|
||||||
|
bases=('main.systemjobevent',),
|
||||||
|
),
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user