Lines 1290-1297
DROP TABLE IF EXISTS `borrower_attribute_types_categories`;
Link Here
|
1290 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
1290 |
/*!40101 SET @saved_cs_client = @@character_set_client */; |
1291 |
/*!40101 SET character_set_client = utf8 */; |
1291 |
/*!40101 SET character_set_client = utf8 */; |
1292 |
CREATE TABLE `borrower_attribute_types_categories` ( |
1292 |
CREATE TABLE `borrower_attribute_types_categories` ( |
1293 |
`borrower_attribute_type_code` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, |
1293 |
`borrower_attribute_type_code` varchar(64) NOT NULL, |
1294 |
`categorycode` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, |
1294 |
`categorycode` varchar(10) NOT NULL, |
1295 |
KEY `borrower_attribute_type_code` (`borrower_attribute_type_code`), |
1295 |
KEY `borrower_attribute_type_code` (`borrower_attribute_type_code`), |
1296 |
KEY `categorycode` (`categorycode`), |
1296 |
KEY `categorycode` (`categorycode`), |
1297 |
CONSTRAINT `borrower_attribute_types_categories_borrower_attribute_type_code` FOREIGN KEY (`borrower_attribute_type_code`) REFERENCES `borrower_attribute_types` (`code`) ON DELETE CASCADE ON UPDATE CASCADE, |
1297 |
CONSTRAINT `borrower_attribute_types_categories_borrower_attribute_type_code` FOREIGN KEY (`borrower_attribute_type_code`) REFERENCES `borrower_attribute_types` (`code`) ON DELETE CASCADE ON UPDATE CASCADE, |
Lines 6770-6773
CREATE TABLE `zebraqueue` (
Link Here
|
6770 |
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; |
6770 |
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; |
6771 |
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; |
6771 |
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; |
6772 |
|
6772 |
|
6773 |
-- Dump completed on 2024-11-25 12:13:27 |
6773 |
-- Dump completed on 2024-11-25 12:13:27 |
6774 |
- |
|
|