You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jumpserver/apps/assets/migrations/0125_auto_20231011_1053.py

22 lines
638 B

# Generated by Django 4.1.10 on 2023-10-11 02:53
from django.db import migrations
def change_windows_ping_method(apps, schema_editor):
platform_automation_cls = apps.get_model('assets', 'PlatformAutomation')
automations = platform_automation_cls.objects.filter(platform__name__in=['Windows', 'Windows2016'])
automations.update(ping_method='ping_by_rdp')
automations.update(verify_account_method='verify_account_by_rdp')
class Migration(migrations.Migration):
dependencies = [
('assets', '0124_auto_20231007_1437'),
]
operations = [
migrations.RunPython(change_windows_ping_method)
]