Recieving messages via the external link

This commit is contained in:
2023-06-17 22:27:14 +00:00
parent b252d5e62e
commit 77d41bb945
11 changed files with 164 additions and 15 deletions

View File

@ -0,0 +1,9 @@
-- +migrate Up
CREATE TABLE IF NOT EXISTS discord_webhooks (
id TEXT NOT NULL PRIMARY KEY,
webhook_id TEXT NOT NULL,
webhook_token TEXT NOT NULL
);
-- +migrate Down
DROP TABLE discord_webhooks;