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.
30 lines
1.1 KiB
30 lines
1.1 KiB
2 years ago
|
# Generated by Django 3.2.14 on 2022-10-27 02:53
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
2 years ago
|
('assets', '0107_auto_20221019_1115'),
|
||
2 years ago
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='GatherAccountsAutomation',
|
||
|
fields=[
|
||
|
('baseautomation_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='assets.baseautomation')),
|
||
|
],
|
||
|
options={
|
||
|
'verbose_name': 'Gather asset accounts',
|
||
|
},
|
||
|
bases=('assets.baseautomation',),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='baseautomation',
|
||
|
name='type',
|
||
|
field=models.CharField(choices=[('ping', 'Ping'), ('gather_facts', 'Gather facts'), ('push_account', 'Create account'), ('change_secret', 'Change secret'), ('verify_account', 'Verify account'), ('gather_accounts', 'Gather accounts')], max_length=16, verbose_name='Type'),
|
||
|
),
|
||
|
]
|