You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To create the database you can use following code:
CREATE TABLE todos (
id int NOT NULL primary key AUTO_INCREMENT,
submission_date DATETIME,
todo_description TEXT,
todo_url TEXT
) default charset utf8 comment '';