Skip to content

Commit c6c2532

Browse files
authored
Merge pull request #18 from woenel/patch-1
Server Error bug when path long
2 parents dc3cc9b + 1930f44 commit c6c2532

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/create_request_logs_table.php.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ return new class extends Migration
1919
$table->unsignedSmallInteger('status')->nullable();
2020
$table->string('method')->nullable();
2121
$table->string('route')->nullable(); // Not all routes needs to have a name
22-
$table->string('path')->nullable();
22+
$table->text('path')->nullable();
2323
$table->json('headers')->nullable();
2424
$table->json('payload')->nullable();
2525
$table->json('response_headers')->nullable();

0 commit comments

Comments
 (0)