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.
20 lines
482 B
20 lines
482 B
# Generated by Django 3.2.14 on 2023-02-14 10:54
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('terminal', '0058_auto_20230110_1445'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='session',
|
|
name='account_id',
|
|
field=models.CharField(db_index=True, default='', max_length=128, verbose_name='Account id'),
|
|
preserve_default=False,
|
|
),
|
|
]
|