1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 17:24:03 +00:00

Add comments to config

This commit is contained in:
Samuel Štancl 2019-10-26 22:01:01 +02:00
parent 77df467567
commit b4caaaed51

View file

@ -11,7 +11,7 @@ return [
'custom_columns' => [ 'custom_columns' => [
// 'plan', // 'plan',
], ],
'connection' => null, 'connection' => null, // Your central database connection. Set to null to use the default connection.
'table_names' => [ 'table_names' => [
'TenantModel' => 'tenants', 'TenantModel' => 'tenants',
'DomainModel' => 'domains', 'DomainModel' => 'domains',
@ -27,7 +27,7 @@ return [
// 'localhost', // 'localhost',
], ],
'database' => [ 'database' => [
'based_on' => null, // The connection that will be used as a base for the dynamically created tenant connection. 'based_on' => null, // The connection that will be used as a base for the dynamically created tenant connection. Set to null to use the default connection.
'prefix' => 'tenant', 'prefix' => 'tenant',
'suffix' => '', 'suffix' => '',
], ],