Update source/docs/v3/tenants.blade.md

Co-authored-by: Samuel Štancl <samuel.stancl@gmail.com>
This commit is contained in:
Tom Croft 2020-09-27 17:18:33 +01:00 committed by GitHub
parent 922586e539
commit f3f016faa6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,7 @@ $tenant->plan = 'free'; // to be stored in the plan column (see below)
$tenant->save();
```
You may define the custom columns that **won't** be used in the `data` JSON column by overriding the `getCustomColumns()` method on your `Tenant` model:
You may define the custom columns that **won't** be stored in the `data` JSON column by overriding the `getCustomColumns()` method on your `Tenant` model:
```php
public static function getCustomColumns(): array