-- Table structure for table `hold_group_target_holds` --
DROP TABLE IF EXISTS `hold_group_target_holds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `hold_group_target_holds` ( `hold_group_id` int(10) unsigned NOT NULL COMMENT 'foreign key, linking this to the hold_groups table', `reserve_id` int(11) NOT NULL COMMENT 'foreign key, linking this to the reserves table', PRIMARY KEY (`hold_group_id`,`reserve_id`), UNIQUE KEY `hold_group_id` (`hold_group_id`), UNIQUE KEY `reserve_id` (`reserve_id`), CONSTRAINT `hold_group_target_holds_ibfk_1` FOREIGN KEY (`hold_group_id`) REFERENCES `hold_groups` (`hold_group_id`) ON DELETE CASCADE, CONSTRAINT `hold_group_target_holds_ibfk_2` FOREIGN KEY (`reserve_id`) REFERENCES `reserves` (`reserve_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */;
-- 5094,5108d5111 < ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; < /*!40101 SET character_set_client = @saved_cs_client */; < < -- < -- Table structure for table `hold_group_target_holds` < -- < DROP TABLE IF EXISTS `hold_group_target_holds`; < /*!40101 SET @saved_cs_client = @@character_set_client */; < /*!40101 SET character_set_client = utf8 */; < CREATE TABLE hold_group_target_holds ( < `hold_group_id` int unsigned NOT NULL UNIQUE COMMENT 'foreign key,
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40529 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Failed QA --- Comment #53 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- Again we now have structural diffs that need to be reconciled: Running [diff /tmp/current_db.sql /tmp/upgraded_db.sql && diff -q /tmp/current_db.sql /tmp/upgraded_db.sql || { echo "ERROR - DB structures are not identical" && exit 1; }]... 3527a3528,3545 linking this to the hold_groups table', < `reserve_id` int(11) DEFAULT NULL UNIQUE COMMENT 'foreign key, linking this to the reserves table', < PRIMARY KEY (`hold_group_id`, `reserve_id`), < CONSTRAINT `hold_group_target_holds_ibfk_1` FOREIGN KEY (`hold_group_id`) REFERENCES `hold_groups` (`hold_group_id`) ON DELETE CASCADE, < CONSTRAINT `hold_group_target_holds_ibfk_2` FOREIGN KEY (`reserve_id`) REFERENCES `reserves` (`reserve_id`) ON DELETE CASCADE ERROR - DB structures are not identical -- You are receiving this mail because: You are watching all bug changes.