Files
Aurora.3/SQL/migrate/V011__Discord_webhooks.sql
Karolis 00ead7d560 Added webhook implementation of discord integration (#3748)
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.
2017-12-23 23:56:20 +02:00

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`)
);