Merge pull request #1775 from koel/fix/1774

This commit is contained in:
Phan An 2024-07-10 20:27:03 +02:00 committed by GitHub
commit 04df9880c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View file

@ -83,7 +83,7 @@ return [
'sftp' => [
'driver' => 'sftp',
'host' => env('SFTP_HOST'),
'root' => rtrim(env('SFTP_ROOT'), '/\\'),
'root' => rtrim(env('SFTP_ROOT') ?? '', '/\\'),
'username' => env('SFTP_USERNAME'),
'password' => env('SFTP_PASSWORD'),

View file

@ -27,8 +27,6 @@ return new class extends Migration {
'is_public' => true,
'owner_id' => $firstAdmin->id,
]);
$table->unsignedInteger('owner_id')->nullable(false)->change();
});
}
};