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.
33 lines
875 B
33 lines
875 B
# Generated by Django 3.1.14 on 2022-04-07 09:26
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('terminal', '0051_sessionsharing_users'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='session',
|
|
name='protocol',
|
|
field=models.CharField(db_index=True, default='ssh', max_length=16),
|
|
),
|
|
migrations.RenameField(
|
|
model_name='session',
|
|
old_name='system_user',
|
|
new_name='account',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='session',
|
|
name='system_user_id',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='session',
|
|
name='account',
|
|
field=models.CharField(db_index=True, max_length=128, verbose_name='Account'),
|
|
),
|
|
]
|