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.
21 lines
501 B
21 lines
501 B
1 year ago
|
# Generated by Django 4.1.10 on 2023-10-25 02:45
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
import perms.models.asset_permission
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('perms', '0034_auto_20230525_1734'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='assetpermission',
|
||
|
name='protocols',
|
||
|
field=models.JSONField(default=perms.models.asset_permission.default_protocols, verbose_name='Protocols'),
|
||
|
),
|
||
|
]
|