diff --git a/source/docs/storage-drivers.md b/source/docs/storage-drivers.md index 80846ebf..bcef046a 100644 --- a/source/docs/storage-drivers.md +++ b/source/docs/storage-drivers.md @@ -21,7 +21,7 @@ To use this driver, you need to have a `tenants` table. You may also use a custo If you'd like to use an existing connection, you can set this config to the name of the connection, e.g. `mysql`. You can also set this value to `null` and the package will use the `database.default` connection. -To create the `tenants` table, you can use the migration that comes with this package. If you haven't published it during the installation, publish it now: +To create the `tenants` table, you can use the migration that comes with this package. If you haven't published it during installation, publish it now: ``` php artisan vendor:publish --provider='Stancl\Tenancy\TenancyServiceProvider' --tag=migrations ``` @@ -56,4 +56,4 @@ To use this driver, create a new Redis connection in the `database.redis` config 'port' => env('TENANCY_REDIS_PORT', 6380), // different port = separate Redis instance 'database' => env('TENANCY_REDIS_DB', 3), // alternatively, different database number ], -``` \ No newline at end of file +```