mirror of https://github.com/jumpserver/jumpserver
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.
22 lines
638 B
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)
|
|
]
|