Update tenant-migrations.blade.md (#97)

semicolon wrongly placed in example's array element producing syntax error if copied and used
This commit is contained in:
codexianltd 2020-12-05 20:24:24 +05:30 committed by GitHub
parent b33565be5c
commit ec3cd7966e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ You can run migrations from outside the command line as well. To run migrations
$tenant = \Tenant::create('tenant1.localhost'); $tenant = \Tenant::create('tenant1.localhost');
\Artisan::call('tenants:migrate', [ \Artisan::call('tenants:migrate', [
'--tenants' => [$tenant->id]; '--tenants' => [$tenant->id]
]); ]);
``` ```