fix: move old command_messages table in migration 52

This commit is contained in:
alyssa 2025-07-14 13:10:33 +00:00
parent fdfa2baaef
commit 497bee9487

View file

@ -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,