diff --git a/PluralKit.Core/Database/Migrations/11.sql b/PluralKit.Core/Database/Migrations/11.sql index dda320af..360057d3 100644 --- a/PluralKit.Core/Database/Migrations/11.sql +++ b/PluralKit.Core/Database/Migrations/11.sql @@ -10,8 +10,8 @@ create table command_message create function cleanup_command_message() returns void as $$ begin - delete from command_message where timestamp < now() - interval '1 minute'; + delete from command_message where timestamp < now() - interval '1 hour'; end; $$ language plpgsql; -update info set schema_version = 11; \ No newline at end of file +update info set schema_version = 11;