Currently Disabled features:
❌ Onesync Legacy will not work!
CREATE TABLE IF NOT EXISTS `luxucm_warehouses` (
`warehouse` int(11) NOT NULL,
`owner` varchar(255) NOT NULL,
`workers` longtext NOT NULL,
`jobapplications` longtext NOT NULL,
`guests` longtext NOT NULL,
`miners` longtext NOT NULL,
`statistics` longtext NOT NULL,
`orders` longtext NOT NULL,
`logs` longtext NOT NULL,
PRIMARY KEY (`warehouse`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb3 COLLATE = utf8mb3_general_ci;
CREATE TABLE IF NOT EXISTS `luxucex_accounts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`char_id` varchar(255) NOT NULL,
`balance` bigint(20) NOT NULL DEFAULT 0,
`crypto` longtext NOT NULL,
`address` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `player` (`char_id`) USING BTREE,
KEY `char_id` (`char_id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;