Lines 2635-2640
CREATE TABLE `account_debit_types` (
Link Here
|
2635 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2635 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2636 |
|
2636 |
|
2637 |
-- |
2637 |
-- |
|
|
2638 |
-- Table structure for table `ac_debit_types_branches` |
2639 |
-- |
2640 |
|
2641 |
DROP TABLE IF EXISTS `ac_debit_types_branches`; |
2642 |
CREATE TABLE `ac_debit_types_branches` ( |
2643 |
`debit_type_code` VARCHAR(16), |
2644 |
`branchcode` VARCHAR(10), |
2645 |
FOREIGN KEY (`debit_type_code`) REFERENCES `account_debit_types` (`code`) ON DELETE CASCADE, |
2646 |
FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE |
2647 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2648 |
|
2649 |
-- |
2638 |
-- Table structure for table `accountlines` |
2650 |
-- Table structure for table `accountlines` |
2639 |
-- |
2651 |
-- |
2640 |
|
2652 |
|
2641 |
- |
|
|