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/0004_endpoint_is_active.py

19 lines
416 B

# Generated by Django 4.1.13 on 2024-09-25 07:38
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('terminal', '0003_auto_20171230_0308'),
]
operations = [
migrations.AddField(
model_name='endpoint',
name='is_active',
field=models.BooleanField(default=True, verbose_name='Active'),
),
]