mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			670 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			670 B
		
	
	
	
		
			Python
		
	
	
# Generated by Django 3.2.16 on 2023-03-23 08:39
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ('accounts', '0009_account_usernames_to_ids'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='gatheraccountsautomation',
 | 
						|
            name='is_sync_account',
 | 
						|
            field=models.BooleanField(blank=True, default=False, verbose_name='Is sync account'),
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='account',
 | 
						|
            name='source_id',
 | 
						|
            field=models.CharField(max_length=128, null=True, blank=True, verbose_name='Source ID'),
 | 
						|
        ),
 | 
						|
    ]
 |