1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-04 21:14:02 +00:00

nitpick: make the default tenant database name a bit more readable

Right now databases on a fresh install are setup like 

```tenanta0f50601-87fb-4f8e-bb18-3fb0b39a69bc```

added `_` just to make it a bit tidier 😅
This commit is contained in:
Alexandru Bucur 2025-03-13 21:54:08 +01:00 committed by GitHub
parent 37a0f1a713
commit 63257cad3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -186,7 +186,7 @@ return [
* Tenant database names are created like this: * Tenant database names are created like this:
* prefix + tenant_id + suffix. * prefix + tenant_id + suffix.
*/ */
'prefix' => 'tenant', 'prefix' => 'tenant_',
'suffix' => '', 'suffix' => '',
/** /**