mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
Add server-specific display names
This commit is contained in:
parent
cd09c9758c
commit
4d07886ec8
9 changed files with 120 additions and 24 deletions
|
|
@ -47,6 +47,16 @@ create table if not exists members
|
|||
created timestamp not null default (current_timestamp at time zone 'utc')
|
||||
);
|
||||
|
||||
create table if not exists member_guild
|
||||
(
|
||||
member serial not null references members (id) on delete cascade,
|
||||
guild bigint not null,
|
||||
|
||||
display_name text default null,
|
||||
|
||||
primary key (member, guild)
|
||||
);
|
||||
|
||||
create table if not exists accounts
|
||||
(
|
||||
uid bigint primary key,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue