mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-10 07:47:53 +00:00
refactor: all instances of generic 'blacklist' to 'proxy blacklist'
This commit is contained in:
parent
952bb02285
commit
1cb554e9c5
10 changed files with 29 additions and 23 deletions
|
|
@ -23,7 +23,7 @@ create function message_context(account_id bigint, guild_id bigint, channel_id b
|
|||
last_switch_timestamp timestamp,
|
||||
|
||||
log_channel bigint,
|
||||
in_blacklist bool,
|
||||
in_proxy_blacklist bool,
|
||||
in_log_blacklist bool,
|
||||
log_cleanup_enabled bool,
|
||||
require_system_tag bool,
|
||||
|
|
@ -62,8 +62,8 @@ as $$
|
|||
|
||||
-- servers table
|
||||
servers.log_channel as log_channel,
|
||||
((channel_id = any (servers.blacklist))
|
||||
or (thread_id = any (servers.blacklist))) as in_blacklist,
|
||||
((channel_id = any (servers.proxy_blacklist))
|
||||
or (thread_id = any (servers.proxy_blacklist))) as in_proxy_blacklist,
|
||||
((channel_id = any (servers.log_blacklist))
|
||||
or (thread_id = any (servers.log_blacklist))) as in_log_blacklist,
|
||||
coalesce(servers.log_cleanup_enabled, false) as log_cleanup_enabled,
|
||||
|
|
|
|||
6
crates/migrate/data/migrations/54.sql
Normal file
6
crates/migrate/data/migrations/54.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
-- database version 54
|
||||
-- rename blacklist column to proxy blacklist
|
||||
|
||||
alter table servers rename column blacklist to proxy_blacklist;
|
||||
|
||||
update info set schema_version = 54;
|
||||
Loading…
Add table
Add a link
Reference in a new issue