mirror of https://github.com/jumpserver/jumpserver
24 lines
626 B
Python
24 lines
626 B
Python
# Generated by Django 4.1.13 on 2024-11-15 10:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("assets", "0007_baseautomation_date_last_run_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="automationexecution",
|
|
name="result",
|
|
field=models.JSONField(default=dict, verbose_name="Result"),
|
|
),
|
|
migrations.AddField(
|
|
model_name="automationexecution",
|
|
name="summary",
|
|
field=models.JSONField(default=dict, verbose_name="Summary"),
|
|
),
|
|
]
|