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
);