Lines 2593-2598
CREATE TABLE `account_credit_types` (
Link Here
|
2593 |
`description` varchar(200) DEFAULT NULL, |
2593 |
`description` varchar(200) DEFAULT NULL, |
2594 |
`can_be_added_manually` tinyint(4) NOT NULL DEFAULT 1, |
2594 |
`can_be_added_manually` tinyint(4) NOT NULL DEFAULT 1, |
2595 |
`is_system` tinyint(1) NOT NULL DEFAULT 0, |
2595 |
`is_system` tinyint(1) NOT NULL DEFAULT 0, |
|
|
2596 |
`archived` tinyint(1) NOT NULL DEFAULT 0, -- boolean flag to denote if this till is archived or not |
2596 |
PRIMARY KEY (`code`) |
2597 |
PRIMARY KEY (`code`) |
2597 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2598 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2598 |
|
2599 |
|
2599 |
- |
|
|