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.
23 lines
707 B
23 lines
707 B
# Generated by Django 3.1.14 on 2022-06-06 09:45
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('terminal', '0049_endpoint_redis_port'),
|
|
]
|
|
|
|
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'),
|
|
('magnus', 'Magnus'), ('razor', 'Razor'), ('tinker', 'Tinker'),
|
|
], default='koko', max_length=64, verbose_name='type'),
|
|
),
|
|
]
|