limit feeds and delete materialized views

This commit is contained in:
Émilien Devos 2021-10-19 07:12:15 +00:00 committed by GitHub
parent fabbecf4c2
commit 6a19f66c53
11 changed files with 43 additions and 137 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;