/To-do

A simple to-do list app

Primary LanguageJavaScript

A simple TO-DO app with minimalistic features

hello




# DB tables
 CREATE TABLE `to_dos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` varchar(80) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `status` enum('unattempted','active','onhold','complete') DEFAULT 'unattempted',
  `priority` int(11) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `expected_start_time` datetime DEFAULT NULL,
  `deadline` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ;

 CREATE TABLE `users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(80) DEFAULT NULL,
  PRIMARY KEY (`id`)
)