feat(scheme): 新增数据库表结构同步方案

This commit is contained in:
augushong
2026-01-09 21:08:51 +08:00
parent 1a39354287
commit 8de6b99bb3
24 changed files with 944 additions and 3 deletions

11
config/scheme.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
return [
// 忽略的表 (不参与 scheme 同步)
'ignore_tables' => [
'migrations',
'phinxlog',
],
// 备份中间前缀
'backup_prefix' => 'backup',
];