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.
19 lines
438 B
19 lines
438 B
1 week ago
|
# Generated by Django 4.1.13 on 2024-11-15 10:41
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("assets", "0008_automationexecution_result_and_more"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="automationexecution",
|
||
|
name="duration",
|
||
|
field=models.FloatField(default=0, verbose_name="Duration"),
|
||
|
),
|
||
|
]
|