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.
19 lines
416 B
19 lines
416 B
2 months ago
|
# 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'),
|
||
|
),
|
||
|
]
|