last update
All checks were successful
Gradle CI with Full Reports / build (push) Successful in 20m6s
All checks were successful
Gradle CI with Full Reports / build (push) Successful in 20m6s
This commit is contained in:
9
sql/schema.sql
Normal file
9
sql/schema.sql
Normal 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`)
|
||||
);
|
||||
Reference in New Issue
Block a user