diff --git a/database/migrations/2023_09_01_025739_update_analytics_requests_table.php b/database/migrations/2023_09_01_025739_update_analytics_requests_table.php new file mode 100644 index 0000000..8dede6f --- /dev/null +++ b/database/migrations/2023_09_01_025739_update_analytics_requests_table.php @@ -0,0 +1,28 @@ +text('path')->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('analytics_requests', function (Blueprint $table) { + $table->string('path')->change(); + }); + } +};