mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-07 22:37:54 +00:00
Store the ID of the trigger message in the database
This commit is contained in:
parent
11eabe2e3d
commit
b14666aa4f
3 changed files with 12 additions and 9 deletions
|
|
@ -35,10 +35,11 @@ create table if not exists accounts
|
|||
|
||||
create table if not exists messages
|
||||
(
|
||||
mid bigint primary key,
|
||||
channel bigint not null,
|
||||
member serial not null references members (id) on delete cascade,
|
||||
sender bigint not null
|
||||
mid bigint primary key,
|
||||
channel bigint not null,
|
||||
member serial not null references members (id) on delete cascade,
|
||||
sender bigint not null,
|
||||
original_mid bigint
|
||||
);
|
||||
|
||||
create table if not exists switches
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue