3.x redesign

This commit is contained in:
Samuel Štancl 2020-06-08 21:20:15 +02:00
parent 857122540f
commit f8f354c323
229 changed files with 201175 additions and 22440 deletions

View file

@ -1,16 +0,0 @@
---
title: Disabling Database Creation
description: Disabling Database Creation
extends: _layouts.documentation
section: content
---
# Disabling Database Creation {#disabling-database-creation}
DB creation can be disabled for all tenants (`tenancy.create_database` config), or for individual tenants during tenant creation:
```php
Tenant::new()->withData([
'_tenancy_create_database' => false,
])->save();
```