Add due_time field to Todo tasks
Deploy HouseHub / deploy (push) Successful in 1s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
perco
2026-05-12 14:52:04 +02:00
co-authored by Claude Sonnet 4.6
parent 7790375c01
commit 6ef3b26153
4 changed files with 20 additions and 8 deletions
+1
View File
@@ -334,6 +334,7 @@ CREATE TABLE IF NOT EXISTS pf_todos (
title VARCHAR(500) NOT NULL,
notes TEXT DEFAULT NULL,
due_date DATE DEFAULT NULL,
due_time TIME DEFAULT NULL,
priority ENUM('none','low','medium','high') DEFAULT 'none',
done TINYINT(1) DEFAULT 0,
done_at DATETIME DEFAULT NULL,