Files
GSE2TaskTracker/sql/schema.sql
Jan-Philipp Luithardt efe52f0909
All checks were successful
Gradle CI with Full Reports / build (push) Successful in 20m6s
last update
2025-12-18 10:01:52 +01:00

9 lines
340 B
SQL

CREATE TABLE `task` (
`taskID` int(11) NOT NULL,
`taskName` varchar(255) NOT NULL,
`taskDescription` varchar(255) NOT NULL,
`taskStatus` enum('OPEN','CLOSED','INPROCESS','') NOT NULL DEFAULT 'OPEN',
`taskWorker` varchar(255) DEFAULT NULL,
`createdDate` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`taskID`)
);