Skip to content

Commit

Permalink
Add/Update mariadb and mysql database configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
Jubeki committed Nov 8, 2023
1 parent 3b1a84b commit 6a87b5e
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion laravel/config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,27 @@
'password' => env('DB_PASSWORD', ''),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'collation' => 'utf8mb4_0900_ai_ci',
'prefix' => '',
'prefix_indexes' => true,
'strict' => true,
'engine' => null,
'options' => extension_loaded('pdo_mysql') ? array_filter([
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
]) : [],
],

'mariadb' => [
'driver' => 'mysql',
'url' => env('DB_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_uca1400_ai_ci',
'prefix' => '',
'prefix_indexes' => true,
'strict' => true,
Expand Down

0 comments on commit 6a87b5e

Please sign in to comment.