diff options
| author | horus | 2022-01-07 14:02:05 +0100 |
|---|---|---|
| committer | horus | 2022-01-07 14:02:12 +0100 |
| commit | 3fe0381d28d9c5844c82d908b77d3aa4b0aca737 (patch) | |
| tree | 2ce0641a2a78a2bfe84c6f576947279db6b68ad3 /config | |
| parent | bb95c3083b20687dcea427351270f0d835598fdb (diff) | |
| download | kategorischeraperitif-3fe0381d28d9c5844c82d908b77d3aa4b0aca737.tar.gz | |
first release of kategorischeraperitif.de
Diffstat (limited to 'config')
| -rw-r--r-- | config/database.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/database.php b/config/database.php index cab5d06..7451147 100644 --- a/config/database.php +++ b/config/database.php @@ -54,6 +54,21 @@ return [ 'engine' => null, ], + 'mysql2' => [ + 'driver' => 'mysql', + 'host' => env('DB_HOST_SECOND', '127.0.0.1'), + 'port' => env('DB_PORT_SECOND', '3306'), + 'database' => env('DB_DATABASE_SECOND', 'forge'), + 'username' => env('DB_USERNAME_SECOND', 'forge'), + 'password' => env('DB_PASSWORD_SECOND', ''), + 'unix_socket' => env('DB_SOCKET_SECOND', ''), + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', + 'strict' => true, + 'engine' => null, + ], + 'pgsql' => [ 'driver' => 'pgsql', 'host' => env('DB_HOST', '127.0.0.1'), |
