Gazebo_simulation-Backend/db/playground_task_progress.sql

6 lines
140 B
MySQL
Raw Normal View History

2020-12-30 12:14:18 -04:00
CREATE TABLE task_progress (
id int NOT NULL PRIMARY KEY,
task_id int DEFAULT NULL,
task_progress_value varchar(45) DEFAULT NULL
);