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.
33 lines
893 B
33 lines
893 B
# Generated by Django 2.2.10 on 2020-07-21 11:37
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('orgs', '0005_auto_20200721_1937'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='organization',
|
|
name='admins',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='organization',
|
|
name='auditors',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='organization',
|
|
name='users',
|
|
),
|
|
migrations.AddField(
|
|
model_name='organization',
|
|
name='members',
|
|
field=models.ManyToManyField(related_name='orgs', through='orgs.OrganizationMember', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
]
|