search fix
This commit is contained in:
@@ -15,7 +15,7 @@ public function up(): void
|
||||
$table->id();
|
||||
$table->date('due_date')->nullable();
|
||||
$table->decimal('amount', 8, 4)->nullable();
|
||||
$table->text('note')->default('');
|
||||
$table->text('note')->nullable()->default('');
|
||||
$table->foreignIdFor(\App\Models\Action::class);
|
||||
$table->foreignIdFor(\App\Models\Decision::class);
|
||||
$table->foreignIdFor(\App\Models\ClientCase::class);
|
||||
|
||||
@@ -147,7 +147,7 @@ public function run(): void
|
||||
'user_id' => 1
|
||||
])->clientCase()->create(
|
||||
[
|
||||
'client_id' => 4
|
||||
'client_id' => 2
|
||||
]
|
||||
);
|
||||
|
||||
@@ -166,7 +166,7 @@ public function run(): void
|
||||
'user_id' => 1
|
||||
])->clientCase()->create(
|
||||
[
|
||||
'client_id' => 4
|
||||
'client_id' => 2
|
||||
]
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user