diff --git a/awx/main/migrations/0082_v360_webhook_http_method.py b/awx/main/migrations/0082_v360_webhook_http_method.py index 3e81cfe4a9..3dc93ff970 100644 --- a/awx/main/migrations/0082_v360_webhook_http_method.py +++ b/awx/main/migrations/0082_v360_webhook_http_method.py @@ -5,9 +5,8 @@ from django.db import migrations def add_webhook_notification_template_fields(apps, schema_editor): - # loop over all existing webhook notification templates - # and make sure they have the new "http_method", "username" - # and "password" fields + # loop over all existing webhook notification templates and make + # sure they have the new "http_method" field filled in with "POST" NotificationTemplate = apps.get_model('main', 'notificationtemplate') webhooks = NotificationTemplate.objects.filter(notification_type='webhook') for w in webhooks: