limit feeds and delete materialized views

This commit is contained in:
Emilien Devos
2023-07-26 15:43:43 +02:00
committed by Fijxu
parent d1051efd6e
commit 8665a69fee
10 changed files with 101 additions and 124 deletions

View File

@@ -0,0 +1,6 @@
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;