From c00b0a8d6b61fddfa8e49d3dff9cb57f2bd550a2 Mon Sep 17 00:00:00 2001 From: Shreyansh Panchal Date: Tue, 19 Jan 2021 11:58:19 +0530 Subject: [PATCH] Added missing config key reference for id_generator --- source/docs/v3/configuration.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/configuration.blade.md b/source/docs/v3/configuration.blade.md index eb818de..55df609 100644 --- a/source/docs/v3/configuration.blade.md +++ b/source/docs/v3/configuration.blade.md @@ -34,7 +34,7 @@ The `Stancl\Tenancy\Database\Concerns\GeneratesIds` trait, which is applied on t If you wish to use autoincrement ids instead of uuids: -1. set this config key to null, or create a custom tenant model that doesn't use this trait +1. set this config key `tenancy.id_generator` to null, or create a custom tenant model that doesn't use this trait 2. update the `tenants` table migration to use an incrementing column type instead of `string` ### Domain model {#domain-model}