mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2026-01-02 22:59:10 +03:00
Add indexes for videoInfo
This commit is contained in:
@@ -71,3 +71,14 @@ CREATE INDEX IF NOT EXISTS "shadowBannedUsers_index"
|
|||||||
ON public."shadowBannedUsers" USING btree
|
ON public."shadowBannedUsers" USING btree
|
||||||
("userID" COLLATE pg_catalog."default" ASC NULLS LAST)
|
("userID" COLLATE pg_catalog."default" ASC NULLS LAST)
|
||||||
TABLESPACE pg_default;
|
TABLESPACE pg_default;
|
||||||
|
|
||||||
|
-- videoInfo
|
||||||
|
CREATE INDEX IF NOT EXISTS "videoInfo_videoID"
|
||||||
|
ON public."videoInfo" USING btree
|
||||||
|
("videoID" COLLATE pg_catalog."default" ASC NULLS LAST)
|
||||||
|
TABLESPACE pg_default;
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS "videoInfo_channelID"
|
||||||
|
ON public."videoInfo" USING btree
|
||||||
|
("channelID" COLLATE pg_catalog."default" ASC NULLS LAST)
|
||||||
|
TABLESPACE pg_default;
|
||||||
Reference in New Issue
Block a user