From 79bea9002e9656ee21f0d9f6f3ba2375d9a22529 Mon Sep 17 00:00:00 2001 From: Frederick Holland Date: Fri, 24 Oct 2025 09:27:34 +1100 Subject: [PATCH] Added index to requested_at amendments --- models/amendment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/amendment.go b/models/amendment.go index 5ef486f..1e860dd 100644 --- a/models/amendment.go +++ b/models/amendment.go @@ -8,7 +8,7 @@ type DBAmendment struct { AmendmentColumn string AmendmentValue string Requestor string - RequestedAt time.Time + RequestedAt time.Time `gorm:"index"` Sequence string }