Database - 31ank/ToDoList GitHub Wiki

Database 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 '';