MarwFeatures/Votes/resources/create.sql

6 lines
253 B
MySQL
Raw Normal View History

2018-10-07 03:06:43 +02:00
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;