feat: add sync command for log_type from telemedicine

This commit is contained in:
Iqbal
2026-05-05 14:07:33 +07:00
parent 89506b8491
commit ff11db177f
2 changed files with 139 additions and 0 deletions

View File

@@ -83,6 +83,19 @@ return [
]) : [],
],
'telemedicine' => [
'driver' => 'mysql',
'host' => env('TELEMEDICINE_DB_HOST', '127.0.0.1'),
'port' => env('TELEMEDICINE_DB_PORT', '3306'),
'database' => env('TELEMEDICINE_DB_DATABASE', 'forge'),
'username' => env('TELEMEDICINE_DB_USERNAME', 'forge'),
'password' => env('TELEMEDICINE_DB_PASSWORD', ''),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'strict' => false,
],
'pgsql' => [
'driver' => 'pgsql',
'url' => env('DATABASE_URL'),