1
0
Fork 0
forked from Simnation/Main
Main/resources/[creator]/missions_creator/sql/missions_templates.sql

13 lines
492 B
MySQL
Raw Normal View History

2025-06-07 08:51:21 +02:00
CREATE TABLE IF NOT EXISTS `missions_creator_templates` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`label` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_unicode_ci',
`description` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci',
`options` LONGTEXT NOT NULL COLLATE 'utf8mb4_unicode_ci',
`stages` LONGTEXT NOT NULL COLLATE 'utf8mb4_unicode_ci',
PRIMARY KEY (`id`) USING BTREE,
INDEX `id` (`id`) USING BTREE
)
DEFAULT CHARSET=utf8mb4
COLLATE='utf8mb4_unicode_ci'
ENGINE=InnoDB;