https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38689 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart@gmail.com --- Comment #98 from Jonathan Druart <jonathan.druart@gmail.com> --- Table wrongly placed in kohastructure it seems $ perl /kohadevbox/misc4dev/run_tests.pl --run-db-compare-only --compare-with=v24.05.00
-- Table structure for table `edifact_errors` --
DROP TABLE IF EXISTS `edifact_errors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `edifact_errors` ( `id` int(11) NOT NULL AUTO_INCREMENT, `message_id` int(11) NOT NULL, `date` date DEFAULT NULL, `section` mediumtext DEFAULT NULL, `details` mediumtext DEFAULT NULL, PRIMARY KEY (`id`), KEY `messageid` (`message_id`), CONSTRAINT `emfk_message` FOREIGN KEY (`message_id`) REFERENCES `edifact_messages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */;
-- 2887c2905 < /*!40101 SET character_set_client = utf8 */;
/*!40101 SET character_set_client = utf8mb4 */; 2910,2928d2927 < -- Table structure for table `edifact_errors` < -- < < DROP TABLE IF EXISTS `edifact_errors`; < /*!40101 SET @saved_cs_client = @@character_set_client */; < /*!40101 SET character_set_client = utf8 */; < CREATE TABLE `edifact_errors` ( < `id` int(11) NOT NULL AUTO_INCREMENT, < `message_id` int(11) NOT NULL, < `date` date DEFAULT NULL, < `section` mediumtext DEFAULT NULL, < `details` mediumtext DEFAULT NULL, < PRIMARY KEY (`id`), < KEY `messageid` (`message_id`), < CONSTRAINT `emfk_message` FOREIGN KEY (`message_id`) REFERENCES `edifact_messages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE < ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; < /*!40101 SET character_set_client = @saved_cs_client */;
-- You are receiving this mail because: You are watching all bug changes.