fix:바로빌 동기화 chandj DB 연결 추가

This commit is contained in:
pro
2026-01-22 16:44:18 +09:00
parent 45f73ce7c8
commit bddac80b75
2 changed files with 41 additions and 11 deletions

View File

@@ -63,6 +63,23 @@
]) : [],
],
// sales 레거시 시스템 DB (chandj)
'chandj' => [
'driver' => 'mysql',
'host' => env('CHANDJ_DB_HOST', 'sam-mysql-1'),
'port' => env('CHANDJ_DB_PORT', '3306'),
'database' => env('CHANDJ_DB_DATABASE', 'chandj'),
'username' => env('CHANDJ_DB_USERNAME', 'root'),
'password' => env('CHANDJ_DB_PASSWORD', 'root'),
'unix_socket' => '',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'prefix_indexes' => true,
'strict' => false,
'engine' => null,
],
'mariadb' => [
'driver' => 'mariadb',
'url' => env('DB_URL'),