Added new Field Client Tax ID Number, currently only vieable on the client top head, and under edit. It is also searchable

This commit is contained in:
johnnyq
2023-04-11 16:20:48 -04:00
parent d27c83ab66
commit f127719cbe
10 changed files with 41 additions and 7 deletions

3
db.sql
View File

@@ -223,6 +223,7 @@ CREATE TABLE `clients` (
`client_rate` decimal(15,2) DEFAULT NULL,
`client_currency_code` varchar(200) NOT NULL,
`client_net_terms` int(10) NOT NULL,
`client_tax_id_number` varchar(255) 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(),
@@ -1470,4 +1471,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-03-28 15:29:24
-- Dump completed on 2023-04-11 16:19:58