-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e077fda
commit c4806f7
Showing
5 changed files
with
27 additions
and
28 deletions.
There are no files selected for viewing
23 changes: 0 additions & 23 deletions
23
tests/Stubs/Migrations/2023_09_07_173419_add_parent_id_to_users_table.php
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ protected function setUp(): void | |
parent::setUp(); | ||
|
||
$this->loadLaravelMigrations(config('database.default')); | ||
$this->loadMigrationsFrom(__DIR__.'/../Stubs/Migrations'); | ||
$this->loadMigrationsFrom(__DIR__.'/../database/migrations'); | ||
$this->configurePrimeNumbers(); | ||
} | ||
|
||
|
@@ -185,13 +185,13 @@ public function testExistingIntegerValuesBelow256AreResolved() | |
* | ||
* @return \Cog\Tests\Laravel\Optimus\Stubs\Models\UserWithDefaultOptimusConnection | ||
*/ | ||
protected function createUserWithDefaultOptimusConnection(array $data = []): UserWithDefaultOptimusConnection | ||
protected function createUserWithDefaultOptimusConnection(array $attributes = []): UserWithDefaultOptimusConnection | ||
{ | ||
return UserWithDefaultOptimusConnection::create(array_merge([ | ||
'name' => 'Default Test User', | ||
'email' => '[email protected]', | ||
'password' => 'p4ssw0rd', | ||
], $data)); | ||
], $attributes)); | ||
} | ||
|
||
/** | ||
|
22 changes: 22 additions & 0 deletions
22
tests/database/migrations/2023_09_07_173419_add_parent_id_to_users_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use Illuminate\Database\Migrations\Migration; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
|
||
return new class extends Migration | ||
{ | ||
public function up(): void | ||
{ | ||
Schema::table('users', function (Blueprint $table) { | ||
$table->foreignId('parent_id')->nullable(); | ||
}); | ||
} | ||
|
||
public function down(): void | ||
{ | ||
throw new \Exception('Migration is irreversible'); | ||
} | ||
}; |