Added Definable Client Abbreviation

This commit is contained in:
johnnyq
2024-06-07 18:18:42 -04:00
parent b229349d8c
commit 24022eca55
10 changed files with 41 additions and 8 deletions

3
db.sql
View File

@@ -274,6 +274,7 @@ CREATE TABLE `clients` (
`client_currency_code` varchar(200) NOT NULL,
`client_net_terms` int(10) NOT NULL,
`client_tax_id_number` varchar(255) DEFAULT NULL,
`client_abbreviation` varchar(10) DEFAULT NULL,
`client_notes` text DEFAULT NULL,
`client_created_at` datetime NOT NULL DEFAULT current_timestamp(),
`client_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
@@ -1966,4 +1967,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-06-01 14:25:19
-- Dump completed on 2024-06-07 18:18:21