mirror of
https://github.com/iv-org/invidious.git
synced 2025-08-21 10:49:02 -05:00
Patch from unixfox: https://github.com/yewtudotbe/invidious-custom/blob/master/patches/011-2469.patch Co-Authored-By: Émilien (perso) <4016501+unixfox@users.noreply.github.com>
6 lines
174 B
Bash
6 lines
174 B
Bash
CREATE INDEX channel_videos_ucid_published_idx
|
|
ON public.channel_videos
|
|
USING btree
|
|
(ucid COLLATE pg_catalog."default", published);
|
|
|
|
DROP INDEX channel_videos_ucid_idx; |