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.
19 lines
453 B
19 lines
453 B
# Generated by Django 2.1.7 on 2019-04-12 09:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('perms', '0003_action'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='assetpermission',
|
|
name='actions',
|
|
field=models.ManyToManyField(blank=True, related_name='permissions', to='perms.Action', verbose_name='Action'),
|
|
),
|
|
]
|