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.
24 lines
616 B
24 lines
616 B
4 years ago
|
# Generated by Django 3.1 on 2021-01-13 05:56
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('terminal', '0030_terminal_type'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='commandstorage',
|
||
|
name='comment',
|
||
|
field=models.TextField(blank=True, default='', verbose_name='Comment'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='replaystorage',
|
||
|
name='comment',
|
||
|
field=models.TextField(blank=True, default='', verbose_name='Comment'),
|
||
|
),
|
||
|
]
|