Files
i/server/migrations/0011_soft_delete.sql
T
wsh5485 65b0bb04f8 feat: import CarLog v2.8 code + dev plan
把 CarLog v2.8 全套源码 + 配置导入到 i 仓库作为 baseline:
- server/src/ (13 个路由 + middleware + services + config)
- server/migrations/ (0001~0018 共 18 个迁移 + mysql)
- server/test/ (12 文件 101 测试)
- client/src/ (20 个 view + components + stores + api + composables)
- client/public/ + client/scripts/
- 全部配置文件 (.editorconfig, .eslintrc.json, .prettierrc.json, vitest.config.js, lighthouserc.json, .pa11yci.json, package.json, carlog-init.sql)
- .husky/pre-commit (git hooks)
- docs/install/ (宝塔部署文档)

不含:
- node_modules/ (本地 npm install)
- .env (敏感, 走 .env.example)
- *.zip / *.log / *.sqlite / .DS_Store

新增文档 docs/DEV-PLAN.md:
- Phase 1: 平台基座 (019 migration + 3 个 platform 路由 + 3 个 view)
- Phase 2: CarLog 子系统化 (后端 routes/ → subsystems/carlog/ + 前端 views/ → views/subsystems/carlog/ + 元数据驱动菜单)
- Phase 3: 验证 (测试 + E2E + DB 完整性)
- 交付清单 + commit 模板 + 给 Mavis review 的材料

后续 Trae 实施, 提交后我 code review + 跑测试。
2026-06-20 22:30:19 +08:00

20 lines
1.3 KiB
SQL
Raw 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.
-- 0011_soft_delete.sql — 统一软删(is_deleted+ 操作日志完善
-- 所有数据表加 is_deleted 标志,DELETE 改为 UPDATE SET is_deleted=1
-- 恢复:UPDATE SET is_deleted=0(操作日志已存完整快照)
ALTER TABLE vehicles ADD COLUMN is_deleted INTEGER DEFAULT 0;
ALTER TABLE wash_records ADD COLUMN is_deleted INTEGER DEFAULT 0;
ALTER TABLE chemical_usage ADD COLUMN is_deleted INTEGER DEFAULT 0;
ALTER TABLE maintenance_records ADD COLUMN is_deleted INTEGER DEFAULT 0;
ALTER TABLE refuel_records ADD COLUMN is_deleted INTEGER DEFAULT 0;
ALTER TABLE charging_records ADD COLUMN is_deleted INTEGER DEFAULT 0;
ALTER TABLE insurance_records ADD COLUMN is_deleted INTEGER DEFAULT 0;
-- 索引加速
CREATE INDEX IF NOT EXISTS ix_vehicles_is_deleted ON vehicles(is_deleted);
CREATE INDEX IF NOT EXISTS ix_wash_records_is_deleted ON wash_records(is_deleted);
CREATE INDEX IF NOT EXISTS ix_maintenance_is_deleted ON maintenance_records(is_deleted);
CREATE INDEX IF NOT EXISTS ix_refuel_is_deleted ON refuel_records(is_deleted);
CREATE INDEX IF NOT EXISTS ix_charging_is_deleted ON charging_records(is_deleted);
CREATE INDEX IF NOT EXISTS ix_insurance_is_deleted ON insurance_records(is_deleted);