]> git repositories - QuestLog.git/commitdiff
remove username column for tasks table on database.sql
authorbochard <mail@tenkyuu.dev>
Sun, 8 Jun 2025 13:55:31 +0000 (21:55 +0800)
committerbochard <mail@bochard.net>
Thu, 17 Jul 2025 11:41:16 +0000 (19:41 +0800)
TODO.TXT
database.sql

index b517d734ecbb96b0aec2176ad1fe922e58697be3..d8e941aadf2effb699dbbae43e89335daa2bca4b 100644 (file)
--- a/TODO.TXT
+++ b/TODO.TXT
@@ -4,4 +4,5 @@
 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
index 20669acc0fe2e03e60199932de937eb2dccfe27f..68838c24bc6932b483a50a8ac20570d12ef478fc 100644 (file)
@@ -1,6 +1,6 @@
-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,
@@ -13,7 +13,6 @@ CREATE TABLE users (
 
 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,