invidious/config/migrate-scripts/migrate-db-8bc91ce.sh
Tyler Flowers a9b8f0f647 Limit feeds and delete materialized views
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>
2024-09-09 20:31:55 -04:00

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;