From 9f40b3a873db1b0876c7013767fac5ecc91d8647 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Mon, 1 Jul 2019 09:29:52 -0500 Subject: [PATCH] Add missing table to check_tables --- src/invidious.cr | 1 + 1 file changed, 1 insertion(+) diff --git a/src/invidious.cr b/src/invidious.cr index 5c054c4c..f84c813e 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -123,6 +123,7 @@ Kemal::CLI.new ARGV # Check table integrity if CONFIG.check_tables + analyze_table(PG_DB, logger, "channels", InvidiousChannel) analyze_table(PG_DB, logger, "channel_videos", ChannelVideo) analyze_table(PG_DB, logger, "nonces", Nonce) analyze_table(PG_DB, logger, "session_ids", SessionId)