mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-25 14:50:24 +00:00
perf: 修改 session 字段,添加 Comment
This commit is contained in:
23
apps/terminal/migrations/0062_auto_20221216_1529.py
Normal file
23
apps/terminal/migrations/0062_auto_20221216_1529.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.2.14 on 2022-12-16 07:29
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('terminal', '0061_rename_system_user_command_account'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='session',
|
||||
name='comment',
|
||||
field=models.TextField(blank=True, null=True, verbose_name='Comment'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='session',
|
||||
name='type',
|
||||
field=models.CharField(db_index=True, default='normal', max_length=16),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user