mirror of
https://github.com/ansible/awx.git
synced 2026-05-05 08:27:39 -02:30
18 lines
434 B
Python
18 lines
434 B
Python
# Generated by Django 2.2.16 on 2021-02-15 22:02
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
def reset_pod_specs(apps, schema_editor):
|
|
InstanceGroup = apps.get_model('main', 'InstanceGroup')
|
|
InstanceGroup.objects.update(pod_spec_override="")
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0126_executionenvironment_container_options'),
|
|
]
|
|
|
|
operations = [migrations.RunPython(reset_pod_specs)]
|