Updated files and created compose.yml for internal database usage
This commit is contained in:
8
resources/sql/createTaskTable.sql
Normal file
8
resources/sql/createTaskTable.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE Task (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
taskid INT,
|
||||
name VARCHAR(255) NOT NULL,
|
||||
description TEXT,
|
||||
workerid INT,
|
||||
taskstate INT
|
||||
);
|
||||
Reference in New Issue
Block a user