mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 18:40:01 -03:30
avoid breaking upgrades from certain AWX versions
the prior version of this migration was rewritten, so we should run the function again to really make sure that cleanup happens
This commit is contained in:
parent
d16055806b
commit
fabd2eec63
@ -0,0 +1,13 @@
|
||||
from django.db import migrations
|
||||
from awx.main.migrations._inventory_source import delete_cloudforms_inv_source
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('main', '0121_delete_toweranalyticsstate'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RunPython(delete_cloudforms_inv_source),
|
||||
]
|
||||
Loading…
x
Reference in New Issue
Block a user