ArchiveBox/archivebox/machine/migrations/0015_process_progress_indexes.py
2026-05-27 03:24:04 -07:00

21 lines
640 B
Python

# Generated by ArchiveBox on 2026-05-27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("machine", "0014_process_machine_pro_pid_6eec8b_idx_and_more"),
]
operations = [
migrations.AddIndex(
model_name="process",
index=models.Index(fields=["machine", "process_type", "-modified_at"], name="machine_pro_progress_recent_idx"),
),
migrations.AddIndex(
model_name="process",
index=models.Index(fields=["machine", "status", "process_type"], name="machine_pro_progress_running_idx"),
),
]