forked from Simnation/Main
12 lines
492 B
SQL
12 lines
492 B
SQL
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;
|