From cd6ead3be7b1b6217446e9ef3d42123b0293ebf8 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 20 Jul 2022 15:47:49 +0200 Subject: [PATCH] Change 'tenants migration' to 'tenants table' --- source/docs/v3/tenant-attribute-encryption.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/tenant-attribute-encryption.blade.md b/source/docs/v3/tenant-attribute-encryption.blade.md index df5f476..a2ff738 100644 --- a/source/docs/v3/tenant-attribute-encryption.blade.md +++ b/source/docs/v3/tenant-attribute-encryption.blade.md @@ -10,7 +10,7 @@ To encrypt attributes on the Tenant model, store them in [custom columns]({{ $pa For example, we'll encrypt the tenant's database credentials – `tenancy_db_username` and `tenancy_db_password`. We need to create custom columns for these attributes, because by default, they are stored in the [virtual `data` column](https://github.com/archtechx/virtualcolumn). -- Add custom columns to the tenants migration (we recommend making the string size at least 512 characters, so the string is capable of containing the encrypted data): +- Add custom columns to the tenants table (we recommend making the string size at least 512 characters, so the string is capable of containing the encrypted data): ```php