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;