mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-06 22:07:55 +00:00
Add per-server per-system proxy enable toggle
This commit is contained in:
parent
857b0488b9
commit
639c813ce7
5 changed files with 62 additions and 5 deletions
|
|
@ -20,6 +20,16 @@ create table if not exists systems
|
|||
ui_tz text not null default 'UTC'
|
||||
);
|
||||
|
||||
create table if not exists system_guild
|
||||
(
|
||||
system serial not null references systems (id) on delete cascade,
|
||||
guild bigint not null,
|
||||
|
||||
proxy_enabled bool not null default true,
|
||||
|
||||
primary key (system, guild)
|
||||
);
|
||||
|
||||
create table if not exists members
|
||||
(
|
||||
id serial primary key,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue