mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-13 18:46:17 +05:00
21 lines
640 B
Python
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"),
|
|
),
|
|
]
|