https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38689

Jonathan Druart <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #98 from Jonathan Druart <[email protected]> ---
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to