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.
jumpserver/apps/audits/migrations/0002_ftplog_org_id.py

29 lines
597 B

# Generated by Django 4.1.13 on 2024-05-09 03:16
from django.db import migrations
class Migration(migrations.Migration):
initial = True
dependencies = [
('ops', '0001_initial'),
('audits', '0001_initial'),
]
operations = [
migrations.CreateModel(
name='JobLog',
fields=[
],
options={
'verbose_name': 'Job audit log',
'proxy': True,
'indexes': [],
'constraints': [],
},
bases=('ops.jobexecution',),
),
]