mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2026-01-02 06:39:15 +03:00
Add indexes for videoInfo
This commit is contained in:
@@ -70,4 +70,15 @@ CREATE INDEX IF NOT EXISTS "categoryVotes_UUID_public"
|
||||
CREATE INDEX IF NOT EXISTS "shadowBannedUsers_index"
|
||||
ON public."shadowBannedUsers" USING btree
|
||||
("userID" COLLATE pg_catalog."default" ASC NULLS LAST)
|
||||
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