Update database, did not do increment

This commit is contained in:
o-psi
2023-10-13 20:12:43 -05:00
parent 8c56426186
commit 141dad23fe
2 changed files with 2 additions and 0 deletions

1
db.sql
View File

@@ -682,6 +682,7 @@ CREATE TABLE `invoice_items` (
`item_subtotal` decimal(15,2) NOT NULL DEFAULT 0.00,
`item_tax` decimal(15,2) NOT NULL DEFAULT 0.00,
`item_total` decimal(15,2) NOT NULL DEFAULT 0.00,
`item_order_id` int(11) NOT NULL DEFAULT 0,
`item_created_at` datetime NOT NULL DEFAULT current_timestamp(),
`item_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
`item_archived_at` datetime DEFAULT NULL,