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:
Ryan Petrello 2020-11-10 15:18:49 -05:00
parent d16055806b
commit fabd2eec63
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777

View File

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