feat(M01-B): 增加迁移执行器与旧库只读兼容层

This commit is contained in:
Codex
2026-06-18 09:31:29 +08:00
parent 3cabb71de5
commit e069c50331
8 changed files with 487 additions and 1 deletions
+4
View File
@@ -23,3 +23,7 @@ export function toPoolOptions(config: AppConfig): PoolOptions {
dateStrings: false
};
}
export async function closeMySqlPool(pool: MySqlPool): Promise<void> {
await pool.end();
}