mirror of https://github.com/jumpserver/jumpserver
21 lines
581 B
Python
21 lines
581 B
Python
# Generated by Django 4.1.10 on 2023-10-31 06:12
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('accounts', '0017_alter_automationexecution_options'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='gatheraccountsautomation',
|
|
name='recipients',
|
|
field=models.ManyToManyField(blank=True, to=settings.AUTH_USER_MODEL, verbose_name='Recipient'),
|
|
),
|
|
]
|