fix: actually store ignored channels/roles

This commit is contained in:
sam 2024-11-18 20:47:58 +01:00
parent 19d9f33454
commit e12bd6194b
Signed by: sam
GPG key ID: 5F3C3C1B3166639D
12 changed files with 37 additions and 25 deletions

View file

@ -0,0 +1,2 @@
alter table guilds add column ignored_channels bigint[] not null default array[]::bigint[];
alter table guilds add column ignored_roles bigint[] not null default array[]::bigint[];

View file

@ -0,0 +1,2 @@
alter table guilds drop column ignored_channels;
alter table guilds drop column ignored_roles;