Removed Task Descriptions as the name says it all

This commit is contained in:
johnnyq
2024-04-06 22:07:29 -04:00
parent e6e6c38db2
commit e3ff8854f9
6 changed files with 22 additions and 24 deletions

6
db.sql
View File

@@ -941,7 +941,7 @@ DROP TABLE IF EXISTS `project_template_ticket_templates`;
CREATE TABLE `project_template_ticket_templates` (
`ticket_template_id` int(11) NOT NULL,
`project_template_id` int(11) NOT NULL,
`ticket_template_order` int(11) NOT NULL,
`ticket_template_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`ticket_template_id`,`project_template_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -1527,7 +1527,6 @@ DROP TABLE IF EXISTS `task_templates`;
CREATE TABLE `task_templates` (
`task_template_id` int(11) NOT NULL AUTO_INCREMENT,
`task_template_name` varchar(200) NOT NULL,
`task_template_description` text DEFAULT NULL,
`task_template_order` int(11) NOT NULL DEFAULT 0,
`task_template_created_at` datetime NOT NULL DEFAULT current_timestamp(),
`task_template_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
@@ -1547,7 +1546,6 @@ DROP TABLE IF EXISTS `tasks`;
CREATE TABLE `tasks` (
`task_id` int(11) NOT NULL AUTO_INCREMENT,
`task_name` varchar(255) NOT NULL,
`task_description` text DEFAULT NULL,
`task_status` varchar(255) DEFAULT NULL,
`task_order` int(11) NOT NULL DEFAULT 0,
`task_completed_at` datetime DEFAULT NULL,
@@ -1896,4 +1894,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-04-06 18:36:53
-- Dump completed on 2024-04-06 22:06:56