last update
All checks were successful
Gradle CI with Full Reports / build (push) Successful in 20m6s

This commit is contained in:
Jan-Philipp Luithardt
2025-12-18 10:01:52 +01:00
parent c5350b3da2
commit efe52f0909
5 changed files with 5 additions and 5 deletions

9
sql/schema.sql Normal file
View File

@@ -0,0 +1,9 @@
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`)
);