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.
29 lines
926 B
29 lines
926 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-12-27 16:25
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0002_auto_20171225_1157'),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('perms', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='assetpermission',
|
|
name='user_groups',
|
|
field=models.ManyToManyField(blank=True, related_name='asset_permissions', to='users.UserGroup', verbose_name='User group'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='assetpermission',
|
|
name='users',
|
|
field=models.ManyToManyField(blank=True, related_name='asset_permissions', to=settings.AUTH_USER_MODEL, verbose_name='User'),
|
|
),
|
|
]
|