mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
Add channel blacklists for logging and proxying
Necessary database migrations for this commit:
alter table servers add column log_blacklist bigint[] not null default array[]::bigint[];
alter table servers add column blacklist bigint[] not null default array[]::bigint[];
This commit is contained in:
parent
0cdd99d195
commit
378cba09e5
7 changed files with 142 additions and 36 deletions
|
|
@ -83,6 +83,8 @@ create table if not exists webhooks
|
|||
|
||||
create table if not exists servers
|
||||
(
|
||||
id bigint primary key,
|
||||
log_channel bigint
|
||||
id bigint primary key,
|
||||
log_channel bigint,
|
||||
log_blacklist bigint[] not null default array[]::bigint[],
|
||||
blacklist bigint[] not null default array[]::bigint[]
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue