From f8ef145bb8f861c734906a2878440de6c9f4f71d Mon Sep 17 00:00:00 2001 From: Ajay Date: Fri, 24 Jun 2022 01:29:07 -0400 Subject: [PATCH] fix collation index --- databases/_sponsorTimes_indexes.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/databases/_sponsorTimes_indexes.sql b/databases/_sponsorTimes_indexes.sql index 139970f..00ad8c8 100644 --- a/databases/_sponsorTimes_indexes.sql +++ b/databases/_sponsorTimes_indexes.sql @@ -27,7 +27,7 @@ CREATE INDEX IF NOT EXISTS "sponsorTimes_videoID" CREATE INDEX IF NOT EXISTS "sponsorTimes_videoID_category" ON public."sponsorTimes" USING btree - (service COLLATE pg_catalog."default" ASC NULLS LAST, "videoID" COLLATE pg_catalog."default" ASC NULLS LAST, "category" ASC NULLS LAST) + (service COLLATE pg_catalog."default" ASC NULLS LAST, "videoID" COLLATE pg_catalog."default" ASC NULLS LAST, "category" COLLATE pg_catalog."default" ASC NULLS LAST) TABLESPACE pg_default; CREATE INDEX IF NOT EXISTS "sponsorTimes_description_gin"