Votes module: first commit

This commit is contained in:
2018-10-07 03:06:43 +02:00
parent 2628105be4
commit 78597f6a91
8 changed files with 139 additions and 0 deletions

View File

@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS `{prefix}votes` (
`id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
`uuid` binary(16) NOT NULL,
`date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY `id` (`id`)
) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;