jumpserver/apps/acls/migrations/0008_commandgroup_comment.py

19 lines
410 B
Python
Raw Normal View History

2022-12-02 04:27:26 +00:00
# Generated by Django 3.2.14 on 2022-12-02 04:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('acls', '0007_auto_20221202_1048'),
]
operations = [
migrations.AddField(
model_name='commandgroup',
name='comment',
field=models.TextField(blank=True, verbose_name='Comment'),
),
]