Files
lotteryLaravel/database/migrations/README.md

19 lines
683 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.
# 迁移目录说明
当前项目已切换为 **schema dump 作为数据库基线** 的维护方式。
- 最终版 PostgreSQL 结构:[`../schema/pgsql-schema.sql`](../schema/pgsql-schema.sql)
- 新环境初始化:优先加载 schema dump再执行后续新增 migration
- 旧的历史 migration 已清理,不再作为基线结构来源
后续规则:
1. 新增数据库结构变更时,继续正常创建新的 migration 文件放在本目录。
2. 当结构进入一个新的稳定阶段后,可重新执行:
```bash
php artisan schema:dump --database=pgsql --prune
```
3. 执行 `--prune` 前,确认团队已接受“历史迁移链不再保留”的方式。