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/0039_auto_20210805_1552.py

19 lines
571 B

# Generated by Django 3.1.6 on 2021-08-05 07:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('terminal', '0038_task_kwargs'),
]
operations = [
migrations.AlterField(
model_name='terminal',
name='type',
field=models.CharField(choices=[('koko', 'KoKo'), ('guacamole', 'Guacamole'), ('omnidb', 'OmniDB'), ('xrdp', 'Xrdp'), ('lion', 'Lion'), ('core', 'Core'), ('celery', 'Celery')], default='koko', max_length=64, verbose_name='type'),
),
]