Enhance payment module

This commit is contained in:
Marshal
2026-06-30 03:13:18 +00:00
parent 9674c9394d
commit f51c015814
3 changed files with 25 additions and 1 deletions

View File

@@ -118,6 +118,7 @@ export default registerAs("database", (): TypeOrmModuleOptions => {
migrationsRun: true,
// Schema changes via migrations only (synchronize breaks ITMLS backfill on existing rows).
synchronize: false,
logging: process.env.TYPEORM_LOGGING === "true",
logging:
process.env.TYPEORM_LOGGING === "true" ? true : ["error", "warn"],
};
});