This commit is contained in:
admin
2026-06-01 00:35:29 +09:00
parent ebc87f96f9
commit 8c66d820c8
34 changed files with 1775 additions and 77 deletions

View File

@@ -146,6 +146,13 @@ def run_auto_migration():
except Exception as e:
print(f"⚠️ ねんきんポータル テーブル作成エラー(無視): {e}")
# ── 銀行明細テーブル作成 ──
try:
from app.modules.bank_statements.migration import create_bank_statement_table
create_bank_statement_table()
except Exception as e:
print(f"⚠️ 銀行明細テーブル作成エラー(無視): {e}")
except Exception as e:
print(f"\n❌ 無法連接到數據庫或執行遷移: {e}")
print("\n提示:")