mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			592 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			592 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', '0018_accountbackupautomation_backup_type_and_more'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='gatheraccountsautomation',
 | 
						|
            name='recipients',
 | 
						|
            field=models.ManyToManyField(blank=True, to=settings.AUTH_USER_MODEL, verbose_name='Recipient'),
 | 
						|
        ),
 | 
						|
    ]
 |