feat: 资产登录工单页面增加监控与中断

This commit is contained in:
xinwen
2021-12-29 20:07:56 +08:00
committed by Jiangjie.Bai
parent 100bfe0304
commit bd84edea62
15 changed files with 168 additions and 20 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.1.13 on 2021-12-29 08:19
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('terminal', '0041_auto_20211105_1605'),
]
operations = [
migrations.AlterField(
model_name='session',
name='protocol',
field=models.CharField(choices=[('ssh', 'ssh'), ('rdp', 'rdp'), ('vnc', 'vnc'), ('telnet', 'telnet'), ('mysql', 'mysql'), ('redis', 'redis'), ('oracle', 'oracle'), ('mariadb', 'mariadb'), ('sqlserver', 'sqlserver'), ('postgresql', 'postgresql'), ('k8s', 'kubernetes')], db_index=True, default='ssh', max_length=16),
),
]