From 58056c0d6cce1cc507a488341fb00364f3fd089e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sun, 6 Oct 2019 12:25:12 +0200 Subject: [PATCH] simplify migration command --- docs/source/v2/application-testing.blade.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/source/v2/application-testing.blade.md b/docs/source/v2/application-testing.blade.md index ad01003..3e3b993 100644 --- a/docs/source/v2/application-testing.blade.md +++ b/docs/source/v2/application-testing.blade.md @@ -25,10 +25,7 @@ protected function setUp(): void { parent::setUp(); - $this->call('migrate', [ - '--path' => database_path('migrations'), - '--database' => 'sqlite', - ]); + $this->call('migrate'); tenancy()->create('test.localhost'); tenancy()->init('test.localhost');