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

24 lines
492 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: sqlite-db
name: SQLite 数据层
status: done
progress: 100
---
## 概述
使用 rusqlite + r2d2 连接池管理本地 SQLite 数据库,存储项目、空间、配置、工具等所有持久化数据。
## 任务卡
### ✅ 连接池初始化
- status: done
- files: src-tauri/src/db.rs
应用启动时初始化数据库创建表结构r2d2 连接池管理。
### ✅ 数据库迁移
- status: done
- files: src-tauri/src/db.rs
表结构变更时的自动迁移逻辑。