Files
Neo-ZQYY/db/README.md

22 lines
795 B
Markdown
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.
# db/
## 作用说明
数据库资产目录,集中管理所有数据库的 DDL、迁移脚本和种子数据。每个数据库实例对应一个子目录。
## 内部结构
- `etl_feiqiu/` — ETL 数据库(六层 schemameta/ods/dwd/core/dws/app
- `schemas/` — DDL 定义(每个 schema 一个文件)
- `migrations/` — 迁移脚本(日期前缀命名)
- `seeds/` — 种子数据
- `zqyy_app/` — 业务应用数据库(用户/权限/任务/审批)
- `schemas/` / `migrations/` / `seeds/`
- `fdw/` — PostgreSQL FDW 跨库映射配置
## Roadmap
- FDW 演进:当前为单机 localhost 映射,未来支持跨主机远程 FDW 配置
- 引入 schema diff 工具,自动检测生产与测试库结构偏差
- 考虑 FDW 性能监控与查询下推优化