From aae7db2ad0f9d10b5fcaed81f1a132660f3d42cc Mon Sep 17 00:00:00 2001 From: Jan Date: Sun, 7 Dec 2025 11:16:28 +0100 Subject: [PATCH] =?UTF-8?q?schema.sql=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schema.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 schema.sql diff --git a/schema.sql b/schema.sql new file mode 100644 index 0000000..8acde9d --- /dev/null +++ b/schema.sql @@ -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`) +); \ No newline at end of file