From 63257cad3f10a67268fce3336f305baa319607b9 Mon Sep 17 00:00:00 2001 From: Alexandru Bucur Date: Thu, 13 Mar 2025 21:54:08 +0100 Subject: [PATCH] nitpick: make the default tenant database name a bit more readable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Right now databases on a fresh install are setup like ```tenanta0f50601-87fb-4f8e-bb18-3fb0b39a69bc``` added `_` just to make it a bit tidier 😅 --- assets/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/config.php b/assets/config.php index db3820bf..97ba2f74 100644 --- a/assets/config.php +++ b/assets/config.php @@ -186,7 +186,7 @@ return [ * Tenant database names are created like this: * prefix + tenant_id + suffix. */ - 'prefix' => 'tenant', + 'prefix' => 'tenant_', 'suffix' => '', /**