alter ticket_kanban to ticket_order

This commit is contained in:
Hugo Sampaio
2025-02-04 13:35:28 -03:00
parent 3de97fcd15
commit 65bb1b4007
5 changed files with 10 additions and 10 deletions

2
db.sql
View File

@@ -2114,7 +2114,7 @@ CREATE TABLE `tickets` (
`ticket_asset_id` int(11) NOT NULL DEFAULT 0,
`ticket_invoice_id` int(11) NOT NULL DEFAULT 0,
`ticket_project_id` int(11) NOT NULL DEFAULT 0,
`ticket_kanban` int(11) NOT NULL DEFAULT 0,
`ticket_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`ticket_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;