mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
Adds ability to get server updates to Discord using webhook API, instead of complicated bot API. Simple config options make it a breeze to add / remove linked channels.
9 lines
243 B
SQL
9 lines
243 B
SQL
CREATE TABLE `ss13_webhooks` (
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`url` longtext NOT NULL,
|
|
`tags` longtext NOT NULL,
|
|
`mention` varchar(32),
|
|
`dateadded` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`)
|
|
);
|