From dbec1073c7323f3456149648f28c2b0f44b6f932 Mon Sep 17 00:00:00 2001 From: Aditya Thebe Date: Tue, 17 Sep 2024 17:49:20 +0545 Subject: [PATCH] feat: change event_queue pop index --- schema/system.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/system.hcl b/schema/system.hcl index 69381ec4..f19293a0 100644 --- a/schema/system.hcl +++ b/schema/system.hcl @@ -95,7 +95,7 @@ table "event_queue" { columns = [column.properties] } index "event_queue_pop" { - columns = [column.name, column.attempts, column.last_attempt, column.priority, column.created_at] + columns = [column.name, column.delay, column.attempts, column.last_attempt, column.priority, column.created_at] } }