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.
22 lines
579 B
22 lines
579 B
# Generated by Django 4.1.13 on 2024-11-11 09:32
|
|
|
|
import django.core.validators
|
|
from django.db import migrations
|
|
|
|
import common.db.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('terminal', '0004_endpoint_is_active'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='endpoint',
|
|
name='vnc_port',
|
|
field=common.db.fields.PortField(default=15900, validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(65535)], verbose_name='VNC port'),
|
|
),
|
|
]
|