From 497bee9487e53a1c521665a617ff22d61e0faff8 Mon Sep 17 00:00:00 2001 From: alyssa Date: Mon, 14 Jul 2025 13:10:33 +0000 Subject: [PATCH] fix: move old command_messages table in migration 52 --- PluralKit.Core/Database/Migrations/52.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PluralKit.Core/Database/Migrations/52.sql b/PluralKit.Core/Database/Migrations/52.sql index 396ee838..7c603021 100644 --- a/PluralKit.Core/Database/Migrations/52.sql +++ b/PluralKit.Core/Database/Migrations/52.sql @@ -4,6 +4,9 @@ create index messages_by_original on messages(original_mid); create index messages_by_sender on messages(sender); +-- remove old table from database version 11 +alter table command_messages rename to command_messages_old; + create table command_messages ( mid bigint primary key, channel bigint not null,