mirror of https://github.com/jumpserver/jumpserver
25 lines
731 B
Python
25 lines
731 B
Python
|
# Generated by Django 3.2.14 on 2022-10-14 11:40
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('assets', '0109_auto_20221013_1751'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='GatherFactsAutomation',
|
||
|
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 facts',
|
||
|
},
|
||
|
bases=('assets.baseautomation',),
|
||
|
),
|
||
|
]
|