feat: Implement task notes functionality with CRUD operations and integrate into project tasks section

This commit is contained in:
Chop
2025-06-03 20:46:37 +02:00
parent a9afebdda5
commit 330744daf9
9 changed files with 309 additions and 20 deletions

View File

@@ -81,7 +81,6 @@ export default function initializeDatabase() {
} catch (e) {
// Column already exists, ignore error
}
// Migration: Add description column to tasks table
try {
db.exec(`
@@ -90,4 +89,13 @@ export default function initializeDatabase() {
} catch (e) {
// Column already exists, ignore error
}
// Migration: Add description column to project_tasks table
try {
db.exec(`
ALTER TABLE project_tasks ADD COLUMN custom_description TEXT;
`);
} catch (e) {
// Column already exists, ignore error
}
}