Просмотр исходного кода

Merge branch 'refs/heads/f-saas' into dev

peterguo 3 месяцев назад
Родитель
Сommit
2affd3b905
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      app/Console/Commands/CreateTenant.php

+ 2 - 2
app/Console/Commands/CreateTenant.php

@@ -39,8 +39,8 @@ class CreateTenant extends Command
         $tenant = [
             'id' => $tenantCode
         ];
-        // 默认值为 tenancy.database.template_connection配置
-        $tenant['tenancy_db_connection'] = config('tenancy.database.template_connection');
+        // 默认值为 tenancy.database.template_tenant_connection配置
+        $tenant['tenancy_db_connection'] = config('tenancy.database.template_tenant_connection');
 
         if (!empty($this->option('db-connection'))) {
             $tenant['tenancy_db_connection'] = $this->option('db-connection');