Main/resources/[tools]/Codem-BlackHUDV2/insert-me.sql

6 lines
249 B
MySQL
Raw Normal View History

2025-06-07 08:51:21 +02:00
CREATE TABLE IF NOT EXISTS `codem_hud_data` (
`identifier` varchar(65) DEFAULT NULL,
`data` longtext DEFAULT NULL,
`stress` int(11) DEFAULT NULL,
UNIQUE KEY `identifier` (`identifier`) USING HASH
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;