Lines 1372-1378
DROP TABLE IF EXISTS `borrower_relationships`;
Link Here
|
1372 |
/*!40101 SET character_set_client = utf8 */; |
1372 |
/*!40101 SET character_set_client = utf8 */; |
1373 |
CREATE TABLE `borrower_relationships` ( |
1373 |
CREATE TABLE `borrower_relationships` ( |
1374 |
`id` int(11) NOT NULL AUTO_INCREMENT, |
1374 |
`id` int(11) NOT NULL AUTO_INCREMENT, |
1375 |
`guarantor_id` int(11) DEFAULT NULL, |
1375 |
`guarantor_id` int(11) NOT NULL, |
1376 |
`guarantee_id` int(11) NOT NULL, |
1376 |
`guarantee_id` int(11) NOT NULL, |
1377 |
`relationship` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, |
1377 |
`relationship` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, |
1378 |
PRIMARY KEY (`id`), |
1378 |
PRIMARY KEY (`id`), |
1379 |
- |
|
|