schema.sql hinzugefügt
Some checks failed
Gradle CI with MySQL and Jacoco / build (push) Failing after 1m44s
Some checks failed
Gradle CI with MySQL and Jacoco / build (push) Failing after 1m44s
This commit is contained in:
9
schema.sql
Normal file
9
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