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/terminal/migrations/0038_task_kwargs.py

19 lines
405 B

# Generated by Django 3.1.6 on 2021-07-29 06:06
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('terminal', '0037_auto_20210623_1748'),
]
operations = [
migrations.AddField(
model_name='task',
name='kwargs',
field=models.JSONField(default=dict, verbose_name='Kwargs'),
),
]