4. add a short animation loading progress bar when user did some actions to a task
6. create 'editing task' feature
7. create 'task sorting' feature
-8. create 'task search' feature
\ No newline at end of file
+8. create 'task search' feature
+9. when popup is open, the main window will be unaccessible
\ No newline at end of file
-CREATE DATABASE IF NOT EXISTS todolist;
+CREATE DATABASE IF NOT EXISTS windo7;
-USE todolist;
+USE windo7;
CREATE TABLE users (
user_id INT(11) NOT NULL AUTO_INCREMENT,
CREATE TABLE tasks (
task_id INT(11) NOT NULL AUTO_INCREMENT,
- username VARCHAR(20) NOT NULL,
task VARCHAR(255) NOT NULL,
created_datetime DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
user_id int(11) NOT NULL,