mirror of https://github.com/jumpserver/jumpserver
19 lines
466 B
Python
19 lines
466 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'),
|
||
|
),
|
||
|
]
|