Add index to audit trail.

This commit is contained in:
Patrick Fic
2024-03-15 10:24:00 -07:00
parent 01fd253f1d
commit c27e206687
2 changed files with 3 additions and 0 deletions

View File

@@ -0,0 +1 @@
DROP INDEX IF EXISTS "public"."idx_audit_trail_type";

View File

@@ -0,0 +1,2 @@
CREATE INDEX "idx_audit_trail_type" on
"public"."audit_trail" using btree ("type");