Files
2026-05-22 09:34:49 +08:00

13 lines
569 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.
# ashare-data 项目规则
## 数据安全
- **禁止删除数据库数据**:不允许执行任何 `DELETE``TRUNCATE``DROP TABLE``session.delete()` 等删除操作,除非用户明确要求
- **禁止清理数据**:不要主动建议或执行清理数据库表的操作
- 严格禁止任何 `DROP` 相关操作,不允许把删除表、删数据或清理表结构作为自动迁移手段
## 代码规范
- 所有数据库写入使用 `batch_upsert()`INSERT ON DUPLICATE KEY UPDATE),确保幂等
- 不要引入新的删除方法或清理脚本