summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorhorus2022-01-07 14:02:05 +0100
committerhorus2022-01-07 14:02:12 +0100
commit3fe0381d28d9c5844c82d908b77d3aa4b0aca737 (patch)
tree2ce0641a2a78a2bfe84c6f576947279db6b68ad3 /config
parentbb95c3083b20687dcea427351270f0d835598fdb (diff)
downloadkategorischeraperitif-3fe0381d28d9c5844c82d908b77d3aa4b0aca737.tar.gz
first release of kategorischeraperitif.de
Diffstat (limited to 'config')
-rw-r--r--config/database.php15
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'),