From bdc59dccbf9d40e4518533d0385d943c951542ce Mon Sep 17 00:00:00 2001 From: Ruslan Baidan Date: Sun, 6 Oct 2024 17:44:04 +0200 Subject: [PATCH] Fixed the example config user's name to avaoid the issue in the build. --- config/autoload/local.php.dist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/autoload/local.php.dist b/config/autoload/local.php.dist index b68d126..0c66d27 100644 --- a/config/autoload/local.php.dist +++ b/config/autoload/local.php.dist @@ -19,7 +19,7 @@ return [ 'orm_default' => [ 'params' => [ 'host' => 'localhost', - 'user' => 'root', + 'user' => 'sqlmonarcuser', 'password' => 'password', 'dbname' => 'monarc_common', ], @@ -27,7 +27,7 @@ return [ 'orm_cli' => [ 'params' => [ 'host' => 'localhost', - 'user' => 'root', + 'user' => 'sqlmonarcuser', 'password' => 'password', 'dbname' => 'monarc_master', ],