Layla
73a63fbf4d
This PR adds the functionality for plugins to send and recieve messages linked to a specific channel. Co-authored-by: Layla <layla@layla.gg> Reviewed-on: https://gitea.sumulayla.synology.me/layla/birdbot/pulls/4
9 lines
206 B
SQL
9 lines
206 B
SQL
-- +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; |