Fix indexes

This commit is contained in:
Ajay Ramachandran
2021-03-26 19:02:32 -04:00
parent c7eb5fed35
commit 46524e4298
3 changed files with 11 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ CREATE INDEX IF NOT EXISTS "sponsorTimes_hashedIP"
("hashedIP" COLLATE pg_catalog."default" ASC NULLS LAST)
TABLESPACE pg_default;
CREATE INDEX "privateDB_sponsorTimes_videoID"
CREATE INDEX IF NOT EXISTS "privateDB_sponsorTimes_videoID"
ON public."sponsorTimes" USING btree
("videoID" ASC NULLS LAST)
;