[10:13:43] cesar[m] the table format changes a little bit based on mysql version etc. Your easiest bet is to create a new instance with a different prefix and copy from there. [10:14:00] My table looks like this: [10:14:01] Create Table: CREATE TABLE `repository_commit_ffield` ( [10:14:01]   `id` int unsigned NOT NULL AUTO_INCREMENT, [10:14:02]   `documentID` int unsigned NOT NULL, [10:14:02]   `fieldKey` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, [10:14:03]   `rawCorpus` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, [10:14:03]   `termCorpus` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, [10:14:04]   `normalCorpus` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, [10:14:04]   PRIMARY KEY (`id`), [10:14:05]   UNIQUE KEY `key_documentfield` (`documentID`,`fieldKey`) [10:14:05] ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin [10:14:32] once you've created it, you should use `./bin/storage analyze` to normalize it to your config. [11:35:16] If the server actually runs, you can also look in the `/config/database/` route and get some useful information too. [11:35:17] It will show the expected tables vs reality.