Skip to content

Database

31ank edited this page Apr 9, 2021 · 3 revisions

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

Clone this wiki locally