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/ops/migrations/0028_celerytaskexecution_cr...

22 lines
674 B

# Generated by Django 4.1.13 on 2024-03-18 06:47
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('ops', '0027_alter_celerytaskexecution_options'),
]
operations = [
migrations.AddField(
model_name='celerytaskexecution',
name='creator',
field=models.ForeignKey(db_constraint=False, default=None, null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL, verbose_name='Creator'),
),
]