fix path truncates

This commit is contained in:
2023-09-01 12:58:20 +10:00
parent 41ae64a8c9
commit 3dfa753f33

View File

@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('analytics_requests', function (Blueprint $table) {
$table->text('path')->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('analytics_requests', function (Blueprint $table) {
$table->string('path')->change();
});
}
};