dev-manager-tauri/.blueprint/modules/sqlite-db.md
lanrtop 0cdaa3678c feat: add Blueprint feature to ProjectCard and commands
- Introduced BlueprintModal in ProjectCard for project blueprint visualization.
- Added state management for displaying the BlueprintModal.
- Implemented Blueprint-related interfaces and functions in commands.ts for handling blueprint data.
2026-04-02 19:12:53 +09:00

492 B
Raw Permalink Blame History

id name status progress
sqlite-db SQLite 数据层 done 100

概述

使用 rusqlite + r2d2 连接池管理本地 SQLite 数据库,存储项目、空间、配置、工具等所有持久化数据。

任务卡

连接池初始化

  • status: done
  • files: src-tauri/src/db.rs

应用启动时初始化数据库创建表结构r2d2 连接池管理。

数据库迁移

  • status: done
  • files: src-tauri/src/db.rs

表结构变更时的自动迁移逻辑。