Database - 31ank/ToDoList GitHub Wiki
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 '';