We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff3714 commit 0bbe790Copy full SHA for 0bbe790
tests/database/migrations/CreateTestTables.php renamed to database/migrations/create_test_tables.php.stub
@@ -1,7 +1,5 @@
1
<?php
2
3
-namespace Rappasoft\LaravelLivewireTables\Tests\Database\Migrations;
4
-
5
use Illuminate\Database\Migrations\Migration;
6
use Illuminate\Database\Schema\Blueprint;
7
use Illuminate\Support\Facades\Schema;
tests/TestCase.php
@@ -64,6 +64,7 @@ public function getEnvironmentSetUp($app)
64
'prefix' => '',
65
]);
66
67
- resolve(CreateTestTables::class)->up();
+ include_once __DIR__.'/../database/migrations/create_test_tables.php.stub';
68
+ (new \CreateTestTables())->up();
69
}
70
0 commit comments