From 9da023e97a835cbd057d4f6691770a4d327a216a Mon Sep 17 00:00:00 2001 From: spiral Date: Mon, 19 Oct 2020 03:57:43 -0500 Subject: [PATCH] change command message timeout to 2 hours --- PluralKit.Core/Database/Migrations/11.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Core/Database/Migrations/11.sql b/PluralKit.Core/Database/Migrations/11.sql index 360057d3..bfed37e1 100644 --- a/PluralKit.Core/Database/Migrations/11.sql +++ b/PluralKit.Core/Database/Migrations/11.sql @@ -10,7 +10,7 @@ create table command_message create function cleanup_command_message() returns void as $$ begin - delete from command_message where timestamp < now() - interval '1 hour'; + delete from command_message where timestamp < now() - interval '2 hours'; end; $$ language plpgsql;