mirror of https://github.com/jumpserver/jumpserver
20 lines
799 B
Python
20 lines
799 B
Python
# Generated by Django 3.2.14 on 2022-11-29 04:49
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('authentication', '0017_auto_20221128_1839'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='connectiontoken',
|
|
name='endpoint_protocol',
|
|
field=models.CharField(choices=[('ssh', 'SSH'), ('rdp', 'RDP'), ('telnet', 'Telnet'), ('vnc', 'VNC'), ('mysql', 'MySQL'), ('mariadb', 'MariaDB'), ('oracle', 'Oracle'), ('postgresql', 'PostgreSQL'), ('sqlserver', 'SQLServer'), ('redis', 'Redis'), ('mongodb', 'MongoDB'), ('k8s', 'K8S'), ('http', 'HTTP'), ('None', ' Settings')], default='', max_length=16, verbose_name='Endpoint protocol'),
|
|
preserve_default=False,
|
|
),
|
|
]
|