snapshot: preserve reliability hardening and Workdock identity pass

This commit is contained in:
Md Bayazid Bostame
2026-03-27 00:28:34 +01:00
parent 811bcd8745
commit 8553482ddd
39 changed files with 1393 additions and 320 deletions

View File

@@ -0,0 +1,33 @@
# Generated by Django 5.1.5 on 2026-03-26 22:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('workflows', '0043_portaltrialconfig'),
]
operations = [
migrations.CreateModel(
name='AsyncTaskLog',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('task_name', models.CharField(max_length=255)),
('task_id', models.CharField(blank=True, max_length=255)),
('target_type', models.CharField(blank=True, max_length=80)),
('target_id', models.PositiveIntegerField(blank=True, null=True)),
('target_label', models.CharField(blank=True, max_length=255)),
('status', models.CharField(choices=[('started', 'Gestartet'), ('succeeded', 'Erfolgreich'), ('failed', 'Fehlgeschlagen')], default='started', max_length=20)),
('error_message', models.TextField(blank=True)),
('started_at', models.DateTimeField(auto_now_add=True)),
('finished_at', models.DateTimeField(blank=True, null=True)),
],
options={
'verbose_name': 'Async Task Log',
'verbose_name_plural': 'Async Task Logs',
'ordering': ['-started_at', '-id'],
},
),
]