You have on config.lua the option Config.AutoDatabase if you want to run this SQL automatic.
CREATE TABLE IF NOT EXISTS `m_player_reputations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `char_id` varchar(55) NOT NULL, `reputations` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`reputations`)), PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
Last updated 9 days ago