Gazebo_simulation-Backend/db/playground_student_simulato...

8 lines
210 B
MySQL
Raw Normal View History

2020-12-30 12:14:18 -04:00
CREATE TABLE student_simulator (
id int NOT NULL PRIMARY KEY,
student_id varchar(45) DEFAULT NULL,
task_arn varchar(512) DEFAULT NULL,
status varchar(45) DEFAULT NULL,
time_stamp date DEFAULT NULL
);